xushsh163 commented on PR #63:
URL:
https://github.com/apache/flink-connector-jdbc/pull/63#issuecomment-1596932037
@MartijnVisser
In postgresql 13.10
`CREATE TABLE TEST(
"LEFT" CHAR(20)
);`
In Flink 1.16.0 SQL-Client
`CREATE TABLE test
(
`LEFT` STRING
) WITH (
'connector' = 'jdbc',
'url' = 'jdbc:postgresql://xxxxx:5432/reporting',
'table-name' = 'test',
'username' = 'xxx',
'password' = 'xxx'
);
select * from test limit 10;`
Error:
[ERROR] Could not execute SQL statement. Reason:
org.postgresql.util.PSQLException: ERROR: syntax error at or near "FROM"
Position: 13
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]