@@ -677,7 +677,7 @@ SELECT * FROM json_bin.special_keys WHERE data ->> 'my field' = 'hello';
677677(3 rows)
678678
679679SELECT * FROM json_bin.special_keys WHERE data ->> 'my field' = 'hello';
680- ERROR: pg_clickhouse: unsupported column type: Tuple(CamelCase String, `my field` String, select String)
680+ ERROR: pg_clickhouse: cannot return Tuple(CamelCase String, `my field` String, select String) as jsonb
681681DETAIL: Remote Query: SELECT id, data FROM json_test.special_keys WHERE ((data."my field" = 'hello'))
682682EXPLAIN (VERBOSE, COSTS OFF)
683683SELECT * FROM json_http.json_special_keys WHERE data ->> 'my field' = 'hello';
@@ -702,7 +702,7 @@ SELECT * FROM json_bin.json_special_keys WHERE data ->> 'my field' = 'hello';
702702(3 rows)
703703
704704SELECT * FROM json_bin.json_special_keys WHERE data ->> 'my field' = 'hello';
705- ERROR: pg_clickhouse: unsupported column type: Tuple(CamelCase String, `my field` String, select String)
705+ ERROR: pg_clickhouse: cannot return Tuple(CamelCase String, `my field` String, select String) as json
706706DETAIL: Remote Query: SELECT id, data FROM json_test.special_keys WHERE ((data."my field" = 'hello'))
707707-- Key with mixed case.
708708EXPLAIN (VERBOSE, COSTS OFF)
@@ -728,7 +728,7 @@ SELECT * FROM json_bin.special_keys WHERE data ->> 'CamelCase' = 'world';
728728(3 rows)
729729
730730SELECT * FROM json_bin.special_keys WHERE data ->> 'CamelCase' = 'world';
731- ERROR: pg_clickhouse: unsupported column type: Tuple(CamelCase String, `my field` String, select String)
731+ ERROR: pg_clickhouse: cannot return Tuple(CamelCase String, `my field` String, select String) as jsonb
732732DETAIL: Remote Query: SELECT id, data FROM json_test.special_keys WHERE ((data."CamelCase" = 'world'))
733733EXPLAIN (VERBOSE, COSTS OFF)
734734SELECT * FROM json_http.json_special_keys WHERE data ->> 'CamelCase' = 'world';
@@ -753,7 +753,7 @@ SELECT * FROM json_bin.json_special_keys WHERE data ->> 'CamelCase' = 'world';
753753(3 rows)
754754
755755SELECT * FROM json_bin.json_special_keys WHERE data ->> 'CamelCase' = 'world';
756- ERROR: pg_clickhouse: unsupported column type: Tuple(CamelCase String, `my field` String, select String)
756+ ERROR: pg_clickhouse: cannot return Tuple(CamelCase String, `my field` String, select String) as json
757757DETAIL: Remote Query: SELECT id, data FROM json_test.special_keys WHERE ((data."CamelCase" = 'world'))
758758-- Key that is a SQL reserved word.
759759EXPLAIN (VERBOSE, COSTS OFF)
@@ -779,7 +779,7 @@ SELECT * FROM json_bin.special_keys WHERE data ->> 'select' = 'reserved';
779779(3 rows)
780780
781781SELECT * FROM json_bin.special_keys WHERE data ->> 'select' = 'reserved';
782- ERROR: pg_clickhouse: unsupported column type: Tuple(CamelCase String, `my field` String, select String)
782+ ERROR: pg_clickhouse: cannot return Tuple(CamelCase String, `my field` String, select String) as jsonb
783783DETAIL: Remote Query: SELECT id, data FROM json_test.special_keys WHERE ((data."select" = 'reserved'))
784784EXPLAIN (VERBOSE, COSTS OFF)
785785SELECT * FROM json_http.json_special_keys WHERE data ->> 'select' = 'reserved';
@@ -804,7 +804,7 @@ SELECT * FROM json_bin.json_special_keys WHERE data ->> 'select' = 'reserved';
804804(3 rows)
805805
806806SELECT * FROM json_bin.json_special_keys WHERE data ->> 'select' = 'reserved';
807- ERROR: pg_clickhouse: unsupported column type: Tuple(CamelCase String, `my field` String, select String)
807+ ERROR: pg_clickhouse: cannot return Tuple(CamelCase String, `my field` String, select String) as json
808808DETAIL: Remote Query: SELECT id, data FROM json_test.special_keys WHERE ((data."select" = 'reserved'))
809809-- Key containing embedded double quotes.
810810EXPLAIN (VERBOSE, COSTS OFF)
0 commit comments