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
The parser tests fail when we give column list to the subquery alias. When we have a query such as
select `name`, numbers from (select * from users) as x(`name`, numbers);
with the users table schema as
+---------+--------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +---------+--------------+------+-----+---------+-------+ | id | varchar(255) | YES | | NULL | | | rollnos | int | YES | | NULL | | +---------+--------------+------+-----+---------+-------+
while the same query is valid in MySQL
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Overview of the Issue
The parser tests fail when we give column list to the subquery alias. When we have a query such as
with the users table schema as
while the same query is valid in MySQL
The text was updated successfully, but these errors were encountered: