You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by is...@apache.org on 2023/02/22 08:11:32 UTC

[ignite-3] branch main updated (bcb20bd11e -> ab79d1b7ee)

This is an automated email from the ASF dual-hosted git repository.

isapego pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


    from bcb20bd11e IGNITE-18737 Fixed updating of partition assignments when new assignments equal to table configuration assignments and stable assignments are empty. Fixes #1655
     add ab79d1b7ee IGNITE-17589 C++ Implement binary key_value_view (#1704)

No new revisions were added by this update.

Summary of changes:
 modules/platforms/cpp/ignite/client/CMakeLists.txt |   2 +
 .../cpp/ignite/client/detail/client_operation.h    |   3 +
 .../cpp/ignite/client/detail/table/table_impl.cpp  |  17 +
 .../cpp/ignite/client/detail/table/table_impl.h    |  26 +-
 .../platforms/cpp/ignite/client/detail/utils.cpp   |  15 +
 modules/platforms/cpp/ignite/client/detail/utils.h |  10 +
 .../cpp/ignite/client/table/ignite_tuple.h         |  14 +-
 .../cpp/ignite/client/table/key_value_view.cpp     | 184 ++++
 .../cpp/ignite/client/table/key_value_view.h       | 500 +++++++++++
 .../cpp/ignite/client/table/record_view.h          |  16 +-
 .../platforms/cpp/ignite/client/table/table.cpp    |   4 +
 modules/platforms/cpp/ignite/client/table/table.h  |   8 +
 .../platforms/cpp/tests/client-test/CMakeLists.txt |   1 +
 .../cpp/tests/client-test/ignite_runner_suite.h    |   8 +
 .../client-test/key_value_binary_view_test.cpp     | 978 +++++++++++++++++++++
 15 files changed, 1769 insertions(+), 17 deletions(-)
 create mode 100644 modules/platforms/cpp/ignite/client/table/key_value_view.cpp
 create mode 100644 modules/platforms/cpp/ignite/client/table/key_value_view.h
 create mode 100644 modules/platforms/cpp/tests/client-test/key_value_binary_view_test.cpp