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
SELECT name FROM $planets WHERE (name LIKE '%u%' OR name LIKE '%a%') AND (mass > 1e-24 OR diameter < 30000)
may be other filters, but noticed this testing the LIKE combining
AFTER OPTIMIZATION └─ EXIT └─ FILTER (PASSTHRU(name RLIKE 'u|a')) └─ FILTER (mass > 1e-24 OR diameter < 30000) └─ FILTER (PASSTHRU(name RLIKE 'u|a') AND mass > 1e-24 OR diameter < 30000) └─ READ ($planets) [name, mass, diameter]
The FILTER closest to the READ is correct, the other two should have been removed.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
may be other filters, but noticed this testing the LIKE combining
The FILTER closest to the READ is correct, the other two should have been removed.
The text was updated successfully, but these errors were encountered: