-
Notifications
You must be signed in to change notification settings - Fork 455
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
[GLUTEN-8497][VL] A bad test case that fails columnar table cache query #8498
Conversation
Run Gluten Clickhouse CI on x86 |
Run Gluten Clickhouse CI on x86 |
Good catch. We need to have a way to automatically convert any columnar format to Velox format. Do we need to hack spark code to do the conversion? |
Yes, we already have the transition system to insert the convertions automaically in query planning phase. This bug specifically applies to columnar table cache feature since the conversions are expected to be done at execution time.
For fixing this issue, I am not sure yet. Will keep looking for solutions. |
#8497
Add a bad case which is ignored at the moment to reproduce the bug described in #8497.
I am still looking for a proper solution of the bug. Could merge the test code in advance so one could try with it if interested.