-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Remove FORMAT <..> backwards compatibility options from COPY #9985
Conversation
…pache#9753)" This reverts commit b50f3aa.
This reverts commit 40fb1b8.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @tinfoil-knight 🙏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @tinfoil-knight !
@@ -850,7 +850,7 @@ impl<'a, S: ContextProvider> SqlToRel<'a, S> { | |||
return plan_err!("Unsupported Value in COPY statement {}", value); | |||
} | |||
}; | |||
if !(key.contains('.') || key == "format") { | |||
if !(&key.contains('.')) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Thanks again @tinfoil-knight |
Which issue does this PR close?
Closes #9905 .
Rationale for this change
Please see the issue description.
What changes are included in this PR?
COPY ... OPTIONS (FORMAT..)
options #9753Are these changes tested?
Tests have been updated as the backward compatibility for
format
has been removed now.Are there any user-facing changes?
Yes. Some related doc updates were done in #9931. I've removed the leftover references to the old
(format ...)
options syntax from docs & examples.