hililiwei opened a new pull request #3076: URL: https://github.com/apache/iceberg/pull/3076
about https://github.com/apache/iceberg/issues/3075 the default keyword is used in the SQL statement in the Flink document, but the example does not add escape, so the statement cannot be run directly. such as: CREATE TABLE hive_catalog.default.sample ( id BIGINT COMMENT 'unique id', data STRING ); An error will be reported when the statement is executed: [ERROR] Could not execute SQL statement. Reason: org.apache.flink.sql.parser.impl.ParseException: Encountered ". default" at line 1, column 27. modify the SQL: CREATE TABLE hive_catalog.`default`.sample ( id BIGINT COMMENT 'unique id', data STRING ); the above statements can be executed normally. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
