We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Attempting to create a view that has an IN (< subquery >) clause produces an error:
IN (< subquery >)
Status: INTERNAL_ERROR Issues: <main>: Fatal: ydb/library/yql/sql/v1/context.cpp:165 GetCurrentBlocks(): requirement !CurrentBlocks.empty() failed, code: 1
CREATE TABLE series ( series_id Int32, PRIMARY KEY (series_id) );
CREATE VIEW in_subquery_view WITH (security_invoker = TRUE) AS SELECT * FROM series WHERE series_id IN ( SELECT series_id FROM series );
The text was updated successfully, but these errors were encountered:
jepett0
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Description
Attempting to create a view that has an
IN (< subquery >)
clause produces an error:the error
Reproduction steps
Tested versions
The text was updated successfully, but these errors were encountered: