You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's a risk that a query works "accidentally" without specifying the table/df correspondence because duckdb looks for dataframe names in scope. can we turn off this behavior?
# df.sql('select * from df where hour(ts_utc) = 8') # note!! this works because of duckdb defaultsdf.sql('select * from tbl where hour(ts_utc) = 8', tbl=tbl2)
df.sql(s)
might be the intended, but users will probably first try writingdf.query(s)
. but query is already used by pandas...does that mean it makes sense to prefix with
df.pqd.query
?The text was updated successfully, but these errors were encountered: