We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Follow up of #3819
After #3819, a COPY FROM can only copy a hardcoded number of rows, and terminate the COPY FROM task without any hint.
COPY FROM
Change the limit behavior to
As for the way to config it, we come up with two possible approaches:
LIMIT
COPY [<db>.]<table_name> FROM { '<path>/[<filename>]' } [ [ WITH ] ( [ FORMAT = { parquet } ] [ PATTERN = '<regex_pattern>' ] ) ] [LIMIT NUM]
COPY [<db>.]<table_name> FROM { '<path>/[<filename>]' } [ [ WITH ] ( [ FORMAT = { parquet } ] [ PATTERN = '<regex_pattern>' ] [ LIMIT = NUM ] ) ]
We would personally prefer the first way as it is more natural to write.
No response
The text was updated successfully, but these errors were encountered:
COPY TABLE FROM
Successfully merging a pull request may close this issue.
What problem does the new feature solve?
Follow up of #3819
After #3819, a
COPY FROM
can only copy a hardcoded number of rows, and terminate theCOPY FROM
task without any hint.What does the feature do?
Change the limit behavior to
As for the way to config it, we come up with two possible approaches:
LIMIT
segment inCOPY FROM
statement, likeWe would personally prefer the first way as it is more natural to write.
Implementation challenges
No response
The text was updated successfully, but these errors were encountered: