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 818db99667 IGNITE-17712 Fix UUID serialization for hocon in
configuration (#1093)
add 48abcbe3ff IGNITE-17701 Add common C++ utilities (#1090)
No new revisions were added by this update.
Summary of changes:
modules/platforms/cpp/CMakeLists.txt | 13 +-
modules/platforms/cpp/common/Bits.h | 169 ++++++++
modules/platforms/cpp/common/Bytes.h | 406 +++++++++++++++++++
modules/platforms/cpp/common/CMakeLists.txt | 6 +-
.../cpp/common/Config.h} | 67 ++--
modules/platforms/cpp/common/Uuid.h | 248 ++++++++++++
modules/platforms/cpp/schema/CMakeLists.txt | 4 +-
modules/platforms/cpp/tests/CMakeLists.txt | 49 +++
modules/platforms/cpp/tests/testBits.cpp | 434 +++++++++++++++++++++
modules/platforms/cpp/tests/testBytes.cpp | 363 +++++++++++++++++
modules/platforms/cpp/tests/testUuid.cpp | 66 ++++
11 files changed, 1785 insertions(+), 40 deletions(-)
create mode 100644 modules/platforms/cpp/common/Bits.h
create mode 100644 modules/platforms/cpp/common/Bytes.h
copy
modules/{client-common/src/main/java/org/apache/ignite/internal/client/proto/ClientMsgPackType.java
=> platforms/cpp/common/Config.h} (52%)
create mode 100644 modules/platforms/cpp/common/Uuid.h
create mode 100644 modules/platforms/cpp/tests/CMakeLists.txt
create mode 100644 modules/platforms/cpp/tests/testBits.cpp
create mode 100644 modules/platforms/cpp/tests/testBytes.cpp
create mode 100644 modules/platforms/cpp/tests/testUuid.cpp