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
In this example, the LIKE should not have been pushed past the LIMIT
SELECT URL FROM (SELECT URL FROM hits LIMIT 1000000) AS a WHERE URL LIKE '%google%';
└─ EXIT └─ PROJECT (URL) └─ SUBQUERY AS a └─ LIMIT (1000000) └─ PROJECT (URL) └─ FILTER (URL LIKE '%google%') └─ SCAN (hits) [URL]
The text was updated successfully, but these errors were encountered:
#1696
8171af9
5f3906a
Merge pull request #1738 from mabel-dev/#1696
7c81c67
joocer
Successfully merging a pull request may close this issue.
In this example, the LIKE should not have been pushed past the LIMIT
The text was updated successfully, but these errors were encountered: