This is an automated email from the ASF dual-hosted git repository.
dianfu pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git.
from 72f9f20 [hotfix][doc] Fix typo of TaskManagerSlot#jobId javadoc
add 1a5b35b [FLINK-17118][python] Add Cython support for primitive data
types (#11718)
No new revisions were added by this update.
Summary of changes:
.gitignore | 2 +
flink-python/MANIFEST.in | 2 +
flink-python/pyflink/fn_execution/coder_impl.py | 2 +-
flink-python/pyflink/fn_execution/coders.py | 2 +-
.../pyflink/fn_execution/fast_coder_impl.pxd | 192 +++++++
.../pyflink/fn_execution/fast_coder_impl.pyx | 553 +++++++++++++++++++++
.../{test_coders_common.py => test_coders.py} | 9 +
.../pyflink/fn_execution/tests/test_fast_coders.py | 141 ++++++
flink-python/setup.py | 28 +-
flink-python/tox.ini | 8 +-
10 files changed, 934 insertions(+), 5 deletions(-)
create mode 100644 flink-python/pyflink/fn_execution/fast_coder_impl.pxd
create mode 100644 flink-python/pyflink/fn_execution/fast_coder_impl.pyx
rename flink-python/pyflink/fn_execution/tests/{test_coders_common.py =>
test_coders.py} (95%)
create mode 100644 flink-python/pyflink/fn_execution/tests/test_fast_coders.py