Replies: 1 comment
-
|
We've also run into a similar issue, albeit with a join between 2+ columnar tables. We couldn't find this stated anywhere in the documentation, so finding this was non-intuitive.
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
Example to illustrate issue:
Let's create columnar and regular tables, with the same identifiers.
and simple regular table:
Let's populate them:
As you can see, regular identifiers and columnar identifiers matches.
Now let's try to select the second column directly from the columnar table.
This one nicely uses chunk groups filtering, and generates plan like this:
But fetching those records through join, with logically same condition, doing full table scan:
What is the reason? Because of that behavior, I will not use the feature, in the place, where it seems to me like a game changer ;/.
Thank you for explanation!
Beta Was this translation helpful? Give feedback.
All reactions