Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Regression: All formatting options in COPY commands require format. prefix, but did not in DataFusion 36.0.0 #9716

Closed
Tracked by #9682
alamb opened this issue Mar 20, 2024 · 2 comments · Fixed by #9723
Assignees
Labels
bug Something isn't working regression

Comments

@alamb
Copy link
Contributor

alamb commented Mar 20, 2024

Describe the bug

#9604 from @metesynnada rationalized the COPY syntax to match CREATE EXTERNAL TABLE syntax which is great. However, now all options require a replicated format. string:

COPY source_table
to 'test_files/scratch/copy/table_csv_with_options'
-(format csv,
-'csv.has_header' false,
-'csv.compression' uncompressed,
-'csv.datetime_format' '%FT%H:%M:%S.%9f',
-'csv.delimiter' ';',
-'csv.null_value' 'NULLVAL');
+'format.has_header' false,
+'format.compression' uncompressed,
+'format.datetime_format' '%FT%H:%M:%S.%9f',
+'format.delimiter' ';',
+'format.null_value' 'NULLVAL');

In datafusion 36.0.0 the prefix was not needed

DataFusion CLI v36.0.0
❯ COPY (values (1)) TO 'test_files/scratch/copy/table/' (format parquet, 'compression' 'zstd(10)');

It would be nice to avoid requiring the repetition of format. string

To Reproduce

❯ COPY (select * from (values (1))) to '/tmp/foo.parquet' STORED AS PARQUET OPTIONS ('format.compression' snappy);
+-------+
| count |
+-------+
| 1     |
+-------+
1 row in set. Query took 0.037 seconds.

❯ COPY (select * from (values (1))) to '/tmp/foo.parquet' STORED AS PARQUET OPTIONS ('compression' snappy);
Invalid or Unsupported Configuration: could not find config namespace for key "compression"

Expected behavior

Both queries should do the same thing

Additional context

See discussion synnada-ai#10 (comment)

@alamb alamb added the enhancement New feature or request label Mar 20, 2024
@alamb alamb added bug Something isn't working regression and removed enhancement New feature or request labels Mar 20, 2024
@alamb alamb changed the title All formatting options in COPY commands require format. prefix All formatting options in COPY commands require format. prefix, but did not in DataFusion 36.0.0 Mar 20, 2024
@alamb alamb mentioned this issue Mar 20, 2024
8 tasks
@alamb alamb changed the title All formatting options in COPY commands require format. prefix, but did not in DataFusion 36.0.0 Regression: All formatting options in COPY commands require format. prefix, but did not in DataFusion 36.0.0 Mar 20, 2024
@devinjdangelo
Copy link
Contributor

@tinfoil-knight I believe the PR you had open but was closed without merging to fix a similar issue should be able to fix this (perhaps with slight modification).

@tinfoil-knight
Copy link
Contributor

take

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working regression
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants