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
For a query like
SELECT table1.foo, table2.bar FROM table1 JOIN table2 ON table1.id = table2.id LIMIT 10;
the method RequestUtils#getTablesNames will only return the table1 as table names from the query.
table1
For context of usage, we use this method to track metrics on the tables we are querying, so it is quite useful to us.
The text was updated successfully, but these errors were encountered:
Fixed in #14554
Sorry, something went wrong.
No branches or pull requests
For a query like
the method RequestUtils#getTablesNames will only return the
table1
as table names from the query.For context of usage, we use this method to track metrics on the tables we are querying, so it is quite useful to us.
The text was updated successfully, but these errors were encountered: