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
If I first cast the parameter to a different type, the expression compiles.
For example, this works
param = ibis.param('timestamp', name='param') table.mutate(param=param.cast('date')).compile(params={param: '2017-02-01'})
but, this fails
param = ibis.param('timestamp', name='param') table.mutate(param=param).compile(params={param: '2017-02-01'})
The text was updated successfully, but these errors were encountered:
Thanks, will take a look
Sorry, something went wrong.
780084d
cpcloud
Successfully merging a pull request may close this issue.
If I first cast the parameter to a different type, the expression compiles.
For example, this works
but, this fails
The text was updated successfully, but these errors were encountered: