This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
How to use eq_scalar
with a dictionary-encoded array?
#1592
Unanswered
RyanMarcus
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi folks,
I'm trying to use
comparison::eq_scalar
with a dictionary-encoded array. I can't seem to find the right type for the scalar. Here's an example:Comparing a dictionary array to a
PrimitiveScalar
triggers theassert
at the top of the compare scalar macro. Using aDictionaryScalar
passes theassert
initially, but then this code calls theeq_scalar
function recursively with the interior value of theDictionaryScalar
, causing the same issue as when aPrimitiveScalar
was used.What's the right way to use
eq_scalar
with aDictionaryArray
?Beta Was this translation helpful? Give feedback.
All reactions