Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Failed to find column while reading parquet with case insensitive #979

Closed
jackylee-ch opened this issue Jun 20, 2022 · 1 comment
Closed
Labels
bug Something isn't working

Comments

@jackylee-ch
Copy link
Contributor

Describe the bug
This problem is happenned while we have case sensitive column names in parquet, such as Id7, and scan parquet with case insensitive mode, which means id7 whill be pushed down to source.

To Reproduce

create table test(aa string, bB7 string) using parquet location 'file:///tmp/test';
insert overwrite test values("0","0");
create table test1(aa string, bb7 string) using parquet location 'file:///tmp/test';
select bb7 from test1;

Expected behavior
It should return "0".

Additional context
None

@jackylee-ch jackylee-ch added the bug Something isn't working label Jun 20, 2022
@jackylee-ch
Copy link
Contributor Author

Already fixed, close current PR.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant