-
Notifications
You must be signed in to change notification settings - Fork 638
KIKIMR-20931: Fix set_config #1521
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
Conversation
f708fc7
to
bc179d8
Compare
⚪ |
⚪ |
⚪ |
⚪ |
ydb/library/yql/sql/pg/pg_sql.cpp
Outdated
@@ -2091,8 +2091,8 @@ class TConverter : public IPGParseEvents { | |||
AddError(TStringBuilder() << "VariableSetStmt, set_config doesn't support that option:" << name); | |||
return nullptr; | |||
} | |||
if (rawStr != "pg_catalog" && rawStr != "public") { | |||
AddError(TStringBuilder() << "VariableSetStmt, search path supports only public and pg_catalogue, but got :" << rawStr); | |||
if (rawStr != "pg_catalog" && rawStr != "public" && rawStr != "") { |
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.
please add information_schema too
⚪
|
⚪
|
No description provided.