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
No description provided.
The text was updated successfully, but these errors were encountered:
Actually, I tried several variations and Inlist works well!
echo "1" > /tmp/foo.csv cargo run -p datafusion-cli
CREATE EXTERNAL TABLE foo(x int) STORED AS CSV LOCATION '/tmp/foo.csv'; > SELECT NULL in (1, 2); +---------------+ | Boolean(NULL) | +---------------+ | | +---------------+ 1 row in set. Query took 0.002 seconds. > SELECT NULL in (NULL, 2); +---------------+ | Boolean(NULL) | +---------------+ | | +---------------+ 1 row in set. Query took 0.002 seconds. > SELECT 1 in (NULL, 2); +---------------+ | Boolean(NULL) | +---------------+ | | +---------------+ 1 row in set. Query took 0.002 seconds. > SELECT x in (NULL, 2); Plan("Invalid identifier '#x' for schema ") > SELECT x in (NULL, 2) from foo; +-------------------------------------------------------+ | foo.x IN (Map { iter: Iter([Utf8(NULL), Int64(2)]) }) | +-------------------------------------------------------+ | | +-------------------------------------------------------+ 1 row in set. Query took 0.011 seconds.
Sorry, something went wrong.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: