Skip to content

Commit

Permalink
[Bug] [connector-jdbc] Catalog's SELECT_COLUMNS_SQL_TEMPLATE have som…
Browse files Browse the repository at this point in the history
…e issues. (apache#6054)
  • Loading branch information
zhuqy committed Jan 31, 2024
1 parent 0150d8a commit a78cb7e
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import java.util.stream.Stream;

Expand Down Expand Up @@ -179,8 +180,7 @@ public class JdbcPostgresIT extends TestSuiteBase implements TestResource {
+ "geog,\n"
+ "json_col,\n"
+ "jsonb_col,\n"
+ " cast(xml_col as varchar),\n"
+ "bit_col\n"
+ " cast(xml_col as varchar)\n"
+ "from pg_e2e_source_table";
private static final String SINK_SQL =
"select\n"
Expand Down Expand Up @@ -215,8 +215,7 @@ public class JdbcPostgresIT extends TestSuiteBase implements TestResource {
+ " cast(geog as geography) as geog,\n"
+ " json_col,\n"
+ " jsonb_col,\n"
+ " cast(xml_col as varchar),\n"
+ " bit_col\n"
+ " cast(xml_col as varchar)\n"
+ "from\n"
+ " pg_e2e_sink_table";

Expand Down

0 comments on commit a78cb7e

Please sign in to comment.