-
Notifications
You must be signed in to change notification settings - Fork 15
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
#793: Added support for Pandas 2 pyarrow dtype columns for emitting data from Python UDFs #357
Conversation
1bce18c
to
d01a24f
Compare
…calar with item in test dataframe.py, because asscalar was removed
6e3a5f8
to
0ad7c51
Compare
…h NAN. - Refactor and split Pandas Tests - Add tests for more dtypes to Pandas Tests
…mezone and started to add mixed value/none tests
pyValue.reset(PyObject_Str(pyFloat.get())); | ||
break; | ||
case SWIGVMContainers::DOUBLE: | ||
pyValue.reset(pyFloat.release()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The old implementation used also PyFloat_FromDouble().
And if you change this, should you also check for an error like above for the int case?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ähm, here we don't do any conversion, we only set pyValue to the value of pyFloat. pyValue will be then emitted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Created a ticket exasol/script-languages-release#813
Related to exasol/script-languages-release#793
Related to exasol/script-languages-release#796