You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is that sometimes pDataType is a DICTIONARY type with an index type "UINT8". In this case, the builder seems to replace the index type with "INT8".
In this case this will later trigger FATAL asserts in the arrow code (because I am executing it in debug) and abort my program. This is due to a mismatch between the schema of the table and its field.
Furthermore I think this bahaviour can give problems when I really need to have the "unsigned" values.
What is the reason for this (I saw maybe for java compatibility reasons) ? How should I circumvent this issue ?
I also just saw that there is a method : MakeBuilderExactIndex. I suppose that this is the way to go ?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I just upgraded my arrow version from 11 to 21 (C++).
But I think I have a new behaviour that I find almost buggy, here is the pseudo code :
The problem is that sometimes pDataType is a DICTIONARY type with an index type "UINT8". In this case, the builder seems to replace the index type with "INT8".
In this case this will later trigger FATAL asserts in the arrow code (because I am executing it in debug) and abort my program. This is due to a mismatch between the schema of the table and its field.
Furthermore I think this bahaviour can give problems when I really need to have the "unsigned" values.
What is the reason for this (I saw maybe for java compatibility reasons) ? How should I circumvent this issue ?
I also just saw that there is a method : MakeBuilderExactIndex. I suppose that this is the way to go ?
Regards,
Beta Was this translation helpful? Give feedback.
All reactions