-
Notifications
You must be signed in to change notification settings - Fork 321
New issue
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
[BUG]: Timestamps can no longer be cast to long #884
Comments
@suhsteve Can you help when you get a chance? |
The reason why this worked in 0.9.0 was because we didn't have complete support for Looking at your example, it looks like Since What do you think @imback82 ? |
Thanks @suhsteve for looking into this. @AndreasVolkmann Can you just work with C#'s
, and you can convert DateTime object to any value you want to work with.
|
I am removing a bug label since casting the timestamp to long is not supported since 0.11; the current version is more type-safe. |
Since |
Describe the bug
In version
0.9.0
we were able to run the following:Where the target column is of type
Timestamp
.However, in later versions the same code throws the following exception:
This PR may be related: #428.
It starts breaking in version
0.11.0
and I also tried in the latest version.To Reproduce
I wrote a test to reproduce this in my project:
Expected behavior
Expected the cast to succeed as before.
The text was updated successfully, but these errors were encountered: