-
Notifications
You must be signed in to change notification settings - Fork 42
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
Wrong results for TPCH benchmarks when using native storage format #1834
Comments
@universalmind303 can you look at this? |
looks like something weird is going on with date math this return an empty result set select l_shipdate from lineitem where l_shipdate > date '1995-03-09'; but an explicit cast seems to work select l_shipdate from lineitem where l_shipdate::timestamp > date '1995-03-09'; trying to figure out why the date math isn't working for |
btw, it does works fine with parquet, I suspect the issue is happening when I convert parquet to delta https://colab.research.google.com/drive/1_iD6S6MR88B1Ym91pXksmtqaQzF4seQa#scrollTo=S2iF1xWKUXF7 |
@djouallah it appears to be an issue with the delta-rs library. We'll work on getting it fixed upstream! please refer to delta-io/delta-rs#1670 if you want to track the progress. |
@djouallah this has been fixed and is included in the latest 0.5.1 release. |
Glaredb seems to not to return results at all for some queries when using Native format
https://colab.research.google.com/drive/11Jz3G1oqf8glye5BmNIq5cOdeUQJjImv#scrollTo=MDTt42NXEL5_
The text was updated successfully, but these errors were encountered: