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
I would like to express df = df.with_column("x", df["A"] + 1) in SQL
df = df.with_column("x", df["A"] + 1)
I am not able to make this work for 2 reasons:
df = daft.from_pydict({ "A": [1, 2, 3, 4], "B": [1.5, 2.5, 3.5, 4.5], "C": [True, True, False, False], "D": [None, None, None, None], }) daft.sql("SELECT *, (A + 1) AS try_this FROM df").show(5)
No response
SQL
The text was updated successfully, but these errors were encountered:
fix: sql nested and wildcard, closes Eventual-Inc#2935
b8c6a11
0525bb9
[BUG]: sql nested and wildcard (Eventual-Inc#2937)
c956db7
closes Eventual-Inc#2935
universalmind303
Successfully merging a pull request may close this issue.
Describe the bug
I would like to express
df = df.with_column("x", df["A"] + 1)
in SQLI am not able to make this work for 2 reasons:
To Reproduce
Expected behavior
No response
Component(s)
SQL
Additional context
No response
The text was updated successfully, but these errors were encountered: