waitingkuo commented on issue #4513: URL: https://github.com/apache/arrow-datafusion/issues/4513#issuecomment-1339715501
@alamb i also tested the single quoted string ```bash ❯ create table 'foo' as values (1), (2); 0 rows in set. Query took 0.001 seconds. ``` i'm not sure whether this is expected ```bash ❯ show tables; s information_schema.tables +---------------+--------------------+-------------+------------+ | table_catalog | table_schema | table_name | table_type | +---------------+--------------------+-------------+------------+ | datafusion | public | 'foo' | BASE TABLE | | datafusion | information_schema | tables | VIEW | | datafusion | information_schema | views | VIEW | | datafusion | information_schema | columns | VIEW | | datafusion | information_schema | df_settings | VIEW | +---------------+--------------------+-------------+------------+ ``` as postgresql doesn't support it ```bash willy=# create table 'foo' as values (1), (2); ERROR: syntax error at or near "'foo'" LINE 1: create table 'foo' as values (1), (2); ``` -- 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]
