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
Can parse table name or alias in select items, example:
SELECT tbl.* from tbl;
the table name tbl in select list should be parse and add to table token.
tbl
If sql is:
SELECT b.* from tbl b;
the alias name b in select list should be parse but not add to table token.
b
The text was updated successfully, but these errors were encountered:
6a56aa0
for #2118, refactor Tables.tableNameOrAliasSegment
bb55b5d
for #2118, reuse ownerName instead of tableNameOrAlias
b50d7f8
for #2118, remove ownerName, use unqualifiedShorthand & qualifiedShor…
a93ff7c
…thand
terrymanu
No branches or pull requests
Can parse table name or alias in select items, example:
the table name
tbl
in select list should be parse and add to table token.If sql is:
the alias name
b
in select list should be parse but not add to table token.The text was updated successfully, but these errors were encountered: