Skip to content

Commit

Permalink
feat(tateyama): enhance blob/clob support
Browse files Browse the repository at this point in the history
  • Loading branch information
t-horikawa committed Jan 29, 2025
1 parent a8cd31a commit 5de1a97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tateyama
Submodule tateyama updated 38 files
+4 −0 CMakeLists.txt
+4 −1 README.md
+536 −0 docs/internal/blob-ipc-design_ja.md
+390 −0 docs/internal/blob-store-design_ja.md
+7 −11 include/tateyama/api/configuration.h
+68 −0 mock/CMakeLists.txt
+276 −0 mock/jogasaki/proto/sql/common.proto
+195 −0 mock/jogasaki/proto/sql/error.proto
+498 −0 mock/jogasaki/proto/sql/request.proto
+352 −0 mock/jogasaki/proto/sql/response.proto
+167 −0 mock/jogasaki/serializer/base128v.cpp
+90 −0 mock/jogasaki/serializer/base128v.h
+127 −0 mock/jogasaki/serializer/details/value_io_constants.h
+117 −0 mock/jogasaki/serializer/entry_type.h
+6 −0 mock/jogasaki/serializer/namespace.h
+536 −0 mock/jogasaki/serializer/value_input.cpp
+251 −0 mock/jogasaki/serializer/value_input.h
+95 −0 mock/jogasaki/serializer/value_input_exception.cpp
+119 −0 mock/jogasaki/serializer/value_input_exception.h
+554 −0 mock/jogasaki/serializer/value_output.cpp
+325 −0 mock/jogasaki/serializer/value_output.h
+354 −0 mock/jogasaki/serializer/value_writer.h
+98 −0 mock/tateyama/server/glog_helper.h
+247 −0 mock/tateyama/server/mock_server.cpp
+156 −0 mock/tateyama/server/mock_server.h
+318 −0 mock/tateyama/service/mock_request_handlers.cpp
+134 −0 mock/tateyama/service/mock_service.cpp
+129 −0 mock/tateyama/service/mock_service.h
+112 −0 mock/tateyama/service/test_pattern.h
+5 −5 src/tateyama/endpoint/common/endpoint_proto_utils.h
+11 −8 src/tateyama/endpoint/ipc/bootstrap/ipc_endpoint.h
+1 −1 src/tateyama/endpoint/ipc/bootstrap/ipc_listener.h
+12 −7 src/tateyama/endpoint/stream/bootstrap/stream_endpoint.h
+1 −1 src/tateyama/endpoint/stream/bootstrap/stream_listener.h
+22 −3 test/tateyama/endpoint/header_utils.h
+17 −20 test/tateyama/endpoint/ipc/ipc_client.cpp
+8 −2 test/tateyama/endpoint/ipc/ipc_client.h
+212 −0 test/tateyama/endpoint/ipc/ipc_lob_test.cpp

1 comment on commit 5de1a97

@t-horikawa
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.