alamb commented on code in PR #10483:
URL: https://github.com/apache/datafusion/pull/10483#discussion_r1598710968
##########
datafusion/sqllogictest/test_files/create_external_table.slt:
##########
@@ -201,7 +201,20 @@ CREATE EXTERNAL TABLE IF NOT EXISTS region (
r_name VARCHAR,
r_comment VARCHAR,
r_rev VARCHAR,
-) STORED AS CSV LOCATION 'test_files/tpch/data/region.tbl'
+) STORED AS CSV LOCATION 'test_files/tpch/data/region.tbl'
OPTIONS (
'format.delimiter' '|',
- 'has_header' 'false');
\ No newline at end of file
+ 'has_header' 'false');
+
+# Verify that we do not need quotations for simple namespaced keys.
+statement ok
+CREATE EXTERNAL TABLE IF NOT EXISTS region (
+ r_regionkey BIGINT,
+ r_name VARCHAR,
+ r_comment VARCHAR,
+ r_rev VARCHAR,
+) STORED AS CSV LOCATION 'test_files/tpch/data/region.tbl'
+OPTIONS (
+ format.delimiter '|',
+ has_header false,
+ compression gzip);
Review Comment:
❤️
--
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]