Skip to content

Commit

Permalink
make jogasaki old and tateyama new
Browse files Browse the repository at this point in the history
  • Loading branch information
t-horikawa committed Mar 10, 2025
1 parent 49ae647 commit 21829ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jogasaki
Submodule jogasaki updated 48 files
+2 −2 docs/internal/current_timestamp.md
+1 −1 include/jogasaki/configuration.h
+0 −2 include/jogasaki/error_code.h
+18 −10 include/jogasaki/lob/blob_reference.h
+18 −11 include/jogasaki/lob/clob_reference.h
+26 −2 include/jogasaki/lob/lob_locator.h
+15 −6 include/jogasaki/lob/lob_reference.h
+7 −7 include/jogasaki/lob/lob_reference_kind.h
+0 −3 mock/tateyama/api/server/mock/request_response.cpp
+0 −5 mock/tateyama/api/server/mock/request_response.h
+0 −1 src/jogasaki/api/impl/map_error_code.h
+0 −9 src/jogasaki/api/impl/service.cpp
+0 −3 src/jogasaki/api/impl/service.h
+0 −59 src/jogasaki/datastore/assign_lob_id.cpp
+0 −43 src/jogasaki/datastore/assign_lob_id.h
+6 −5 src/jogasaki/datastore/blob_info_impl.h
+2 −4 src/jogasaki/datastore/find_path_by_lob_id.h
+17 −17 src/jogasaki/datastore/get_lob_data.cpp
+4 −5 src/jogasaki/executor/common/write_statement.cpp
+21 −44 src/jogasaki/executor/expr/details/cast_evaluation.cpp
+0 −4 src/jogasaki/executor/expr/error.h
+6 −27 src/jogasaki/executor/expr/evaluator.cpp
+16 −29 src/jogasaki/executor/expr/evaluator_context.h
+8 −7 src/jogasaki/executor/function/builtin_scalar_functions.cpp
+49 −0 src/jogasaki/executor/function/function_evaluation_context.h
+2 −2 src/jogasaki/executor/process/impl/ops/details/encode_key.cpp
+0 −5 src/jogasaki/executor/process/impl/ops/details/expression_error.h
+2 −1 src/jogasaki/executor/process/impl/ops/filter.cpp
+2 −1 src/jogasaki/executor/process/impl/ops/index_join.h
+1 −0 src/jogasaki/executor/process/impl/ops/index_matcher.h
+8 −4 src/jogasaki/executor/process/impl/ops/join.h
+4 −1 src/jogasaki/executor/process/impl/ops/project.cpp
+2 −1 src/jogasaki/executor/wrt/fill_record_fields.cpp
+31 −0 src/jogasaki/executor/wrt/transfer_locator.cpp
+33 −0 src/jogasaki/executor/wrt/transfer_locator.h
+42 −12 src/jogasaki/index/primary_target.cpp
+1 −43 src/jogasaki/proto/sql/common.proto
+12 −0 src/jogasaki/request_context.h
+2 −2 src/jogasaki/transaction_context.cpp
+5 −8 src/jogasaki/transaction_context.h
+31 −0 src/jogasaki/utils/make_function_context.cpp
+25 −0 src/jogasaki/utils/make_function_context.h
+21 −510 test/jogasaki/api/blob_type_test.cpp
+1 −3 test/jogasaki/api/framework_test.cpp
+0 −67 test/jogasaki/api/service_api_test.cpp
+6 −19 test/jogasaki/executor/process/cast_from_string_test.cpp
+6 −19 test/jogasaki/executor/process/cast_octet_test.cpp
+4 −3 test/jogasaki/executor/process/single_function_evaluator_test.cpp
2 changes: 1 addition & 1 deletion tateyama
Submodule tateyama updated 36 files
+1 −1 CMakeLists.txt
+1 −1 README.md
+6 −4 docs/config-parameters-en.md
+3 −1 docs/config_parameters.md
+12 −1 mock/tateyama/server/mock_server.cpp
+11 −11 mock/tateyama/service/mock_request_handlers.cpp
+8 −1 mock/tateyama/service/mock_service.h
+24 −13 mock/tateyama/service/test_pattern.h
+76 −6 src/tateyama/endpoint/common/request.h
+6 −1 src/tateyama/endpoint/common/response.h
+14 −52 src/tateyama/endpoint/common/worker_common.h
+76 −0 src/tateyama/endpoint/common/worker_configuration.h
+14 −2 src/tateyama/endpoint/ipc/bootstrap/ipc_listener.h
+16 −12 src/tateyama/endpoint/ipc/bootstrap/ipc_worker.cpp
+4 −2 src/tateyama/endpoint/ipc/bootstrap/ipc_worker.h
+7 −2 src/tateyama/endpoint/ipc/ipc_request.h
+5 −2 src/tateyama/endpoint/ipc/ipc_response.h
+14 −2 src/tateyama/endpoint/stream/bootstrap/stream_listener.h
+16 −12 src/tateyama/endpoint/stream/bootstrap/stream_worker.cpp
+3 −1 src/tateyama/endpoint/stream/bootstrap/stream_worker.h
+3 −2 src/tateyama/endpoint/stream/stream_request.h
+5 −2 src/tateyama/endpoint/stream/stream_response.h
+1 −1 test/tateyama/endpoint/ipc/ipc_info_test.cpp
+211 −0 test/tateyama/endpoint/ipc/ipc_lob_disallow_test.cpp
+63 −18 test/tateyama/endpoint/ipc/ipc_lob_test.cpp
+1 −1 test/tateyama/endpoint/ipc/ipc_session_test.cpp
+1 −1 test/tateyama/endpoint/ipc/ipc_store_test.cpp
+3 −2 test/tateyama/endpoint/response_only_test.cpp
+7 −6 test/tateyama/endpoint/result_set_limit_test.cpp
+5 −4 test/tateyama/endpoint/result_set_test.cpp
+1 −1 test/tateyama/endpoint/stream/stream_decline_test.cpp
+1 −1 test/tateyama/endpoint/stream/stream_info_test.cpp
+1 −1 test/tateyama/endpoint/stream/stream_session_test.cpp
+1 −1 test/tateyama/endpoint/stream/stream_store_test.cpp
+5 −4 test/tateyama/endpoint/writer_limit_test.cpp
+9 −4 test/tateyama/test_utils/utility.h

0 comments on commit 21829ae

Please sign in to comment.