You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@iceberg.apache.org by GitBox <gi...@apache.org> on 2021/09/05 07:06:56 UTC

[GitHub] [iceberg] hililiwei opened a new issue #3075: Add escape in the SQL statement in the flink engine document

hililiwei opened a new issue #3075:
URL: 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: issues-unsubscribe@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org
For additional commands, e-mail: issues-help@iceberg.apache.org


[GitHub] [iceberg] hililiwei closed issue #3075: Add escape in the SQL statement in the flink engine document

Posted by GitBox <gi...@apache.org>.
hililiwei closed issue #3075:
URL: https://github.com/apache/iceberg/issues/3075


   


-- 
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: issues-unsubscribe@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org
For additional commands, e-mail: issues-help@iceberg.apache.org


[GitHub] [iceberg] hililiwei commented on issue #3075: Add escape in the SQL statement in the flink engine document

Posted by GitBox <gi...@apache.org>.
hililiwei commented on issue #3075:
URL: https://github.com/apache/iceberg/issues/3075#issuecomment-917311444


   master:a3b72fcaa33ec3db2b18d9ee50a2cc3023b23971


-- 
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: issues-unsubscribe@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org
For additional commands, e-mail: issues-help@iceberg.apache.org