diff options
Diffstat (limited to 'src/test/regress/expected/json_sqljson.out')
-rw-r--r-- | src/test/regress/expected/json_sqljson.out | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/test/regress/expected/json_sqljson.out b/src/test/regress/expected/json_sqljson.out deleted file mode 100644 index 995f2674046..00000000000 --- a/src/test/regress/expected/json_sqljson.out +++ /dev/null @@ -1,24 +0,0 @@ --- JSON_EXISTS -SELECT JSON_EXISTS(NULL FORMAT JSON, '$'); -ERROR: JSON_EXISTS() is not yet implemented for the json type -LINE 1: SELECT JSON_EXISTS(NULL FORMAT JSON, '$'); - ^ -HINT: Try casting the argument to jsonb --- JSON_VALUE -SELECT JSON_VALUE(NULL FORMAT JSON, '$'); -ERROR: JSON_VALUE() is not yet implemented for the json type -LINE 1: SELECT JSON_VALUE(NULL FORMAT JSON, '$'); - ^ -HINT: Try casting the argument to jsonb --- JSON_QUERY -SELECT JSON_QUERY(NULL FORMAT JSON, '$'); -ERROR: JSON_QUERY() is not yet implemented for the json type -LINE 1: SELECT JSON_QUERY(NULL FORMAT JSON, '$'); - ^ -HINT: Try casting the argument to jsonb --- JSON_TABLE -SELECT * FROM JSON_TABLE(NULL FORMAT JSON, '$' COLUMNS (foo text)); -ERROR: JSON_TABLE() is not yet implemented for the json type -LINE 1: SELECT * FROM JSON_TABLE(NULL FORMAT JSON, '$' COLUMNS (foo ... - ^ -HINT: Try casting the argument to jsonb |