Skip to content

Commit

Permalink
Update kuzu to 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mewim committed Nov 15, 2024
1 parent 1a8cade commit 4c1f9c4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion kuzu
Submodule kuzu updated 63 files
+1 −0 .github/workflows/ci-workflow.yml
+2 −2 CMakeLists.txt
+1 −1 examples/rust/Cargo.lock
+3 −0 extension/httpfs/test/test_files/s3_remote_database.test
+1 −0 extension/json/src/CMakeLists.txt
+7 −0 extension/json/src/common/CMakeLists.txt
+33 −0 extension/json/src/common/json_common.cpp
+2 −1 extension/json/src/functions/creation_functions/json_array.cpp
+9 −1 extension/json/src/functions/creation_functions/json_merge_patch.cpp
+5 −1 extension/json/src/functions/creation_functions/json_object.cpp
+13 −2 extension/json/src/functions/creation_functions/to_json.cpp
+13 −4 extension/json/src/functions/extract_functions/json_extract.cpp
+115 −3 extension/json/src/functions/scalar_functions/json_contains.cpp
+20 −10 extension/json/src/functions/scalar_functions/json_keys.cpp
+14 −2 extension/json/src/functions/scalar_functions/json_minify.cpp
+6 −0 extension/json/src/include/common/json_common.h
+1 −0 extension/json/src/include/json_type.h
+0 −20 extension/json/src/include/json_utils.h
+9 −0 extension/json/src/type/json_type.cpp
+21 −123 extension/json/src/utils/json_utils.cpp
+16 −0 extension/json/test/doc-examples.test
+9 −1 extension/json/test/json_array.test
+8 −0 extension/json/test/json_cast.test
+35 −0 extension/json/test/json_contains.test
+9 −2 extension/json/test/json_extract.test
+10 −5 extension/json/test/json_keys.test
+3 −1 extension/json/test/json_merge_patch.test
+16 −0 extension/json/test/json_object.test
+4 −0 extension/json/test/json_structure.test
+10 −30 extension/json/test/json_utils.test
+4 −0 extension/json/test/json_valid.test
+24 −0 extension/json/test/to_json.test
+2 −0 scripts/extension/PRODUCTION_RELEASES
+10 −5 src/binder/bind/bind_file_scan.cpp
+2 −2 src/binder/bind_expression/bind_boolean_expression.cpp
+9 −9 src/binder/bind_expression/bind_function_expression.cpp
+2 −2 src/binder/bind_expression/bind_null_operator_expression.cpp
+2 −2 src/binder/expression/scalar_function_expression.cpp
+2 −1 src/common/types/value/value.cpp
+4 −2 src/common/vector/value_vector.cpp
+7 −7 src/expression_evaluator/function_evaluator.cpp
+5 −4 src/include/binder/expression/scalar_function_expression.h
+2 −0 src/include/common/constants.h
+1 −1 src/include/expression_evaluator/function_evaluator.h
+4 −4 src/include/function/scalar_function.h
+2 −0 src/include/main/client_context.h
+1 −2 src/include/main/db_config.h
+4 −4 src/include/main/settings.h
+1 −1 src/include/storage/buffer_manager/buffer_manager.h
+6 −6 src/include/storage/storage_version_info.h
+2 −0 src/main/client_context.cpp
+1 −1 src/main/database.cpp
+3 −2 src/main/db_config.cpp
+22 −3 src/main/settings.cpp
+0 −5 src/processor/operator/persistent/reader/csv/parallel_csv_reader.cpp
+4 −8 src/storage/buffer_manager/buffer_manager.cpp
+1 −0 src/storage/buffer_manager/spiller.cpp
+27 −2 test/main/system_config_test.cpp
+1 −14 test/test_files/copy/spill_to_disk.test
+5 −0 test/test_files/exceptions/copy/ignore_invalid_row.test
+24 −1 tools/python_api/src_cpp/py_udf.cpp
+1 −1 tools/rust_api/Cargo.lock
+1 −1 tools/rust_api/Cargo.toml
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"cors": "^2.8.5",
"dropzone": "^6.0.0-beta.2",
"express": "^4.18.2",
"kuzu": "0.6.1",
"kuzu": "0.7.0",
"moment": "^2.29.4",
"monaco-editor": "^0.41.0",
"monaco-themes": "^0.4.4",
Expand Down

0 comments on commit 4c1f9c4

Please sign in to comment.