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
Suppose you have the following tables:
create table t1(column1 integer, column2 boolean) create table t2(column1 integer)
The following view fails to compile:
create view v0 as SELECT DISTINCT t1.column1 as new_column from t1 as t1 JOIN t2 as alias2 ON t1.column1 = alias2.column1
with the following exception:
com.vmware.ddlog.translator.TranslationException: Column 't1.column1' not in one of the joined relation t1.column1 line: 1 column: 94
The text was updated successfully, but these errors were encountered:
mihaibudiu
No branches or pull requests
Suppose you have the following tables:
The following view fails to compile:
with the following exception:
The text was updated successfully, but these errors were encountered: