Skip to content

Commit

Permalink
X
Browse files Browse the repository at this point in the history
  • Loading branch information
mewim committed Feb 3, 2024
1 parent ee5d38c commit e0201af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kuzu
Submodule kuzu updated 51 files
+1 −0 dataset/rdf/memory-bug/copy.cypher
+127 −0 dataset/rdf/memory-bug/data.ttl
+1 −0 dataset/rdf/memory-bug/schema.cypher
+0 −1 extension/httpfs/CMakeLists.txt
+9 −2 src/binder/bind/bind_updating_clause.cpp
+5 −0 src/common/types/date_t.cpp
+15 −3 src/function/vector_hash_functions.cpp
+3 −2 src/include/common/type_utils.h
+12 −0 src/include/common/types/types.h
+75 −25 src/include/function/hash/hash_functions.h
+9 −5 src/include/function/hash/vector_hash_functions.h
+3 −3 src/include/processor/operator/aggregate/aggregate_hash_table.h
+1 −1 src/include/processor/operator/persistent/index_builder.h
+2 −2 src/include/storage/index/base_hash_index.h
+3 −3 src/include/storage/index/hash_index.h
+4 −4 src/include/storage/index/hash_index_builder.h
+2 −10 src/include/storage/index/hash_index_utils.h
+17 −8 src/include/storage/store/column.h
+1 −0 src/include/storage/store/column_chunk.h
+18 −4 src/include/storage/store/csr_rel_table_data.h
+2 −2 src/include/storage/store/null_column.h
+2 −2 src/include/storage/store/string_column.h
+4 −4 src/include/storage/store/struct_column.h
+4 −0 src/include/storage/store/struct_column_chunk.h
+3 −3 src/include/storage/store/var_list_column.h
+53 −0 src/processor/operator/aggregate/aggregate_hash_table.cpp
+10 −15 src/processor/operator/persistent/reader/rdf/rdf_reader.cpp
+1 −1 src/processor/operator/persistent/writer/parquet/string_column_writer.cpp
+2 −2 src/processor/operator/recursive_extend/path_property_probe.cpp
+6 −6 src/storage/index/base_hash_index.cpp
+3 −3 src/storage/index/hash_index.cpp
+28 −25 src/storage/index/hash_index_builder.cpp
+35 −28 src/storage/store/column.cpp
+8 −2 src/storage/store/column_chunk.cpp
+88 −60 src/storage/store/csr_rel_table_data.cpp
+8 −7 src/storage/store/null_column.cpp
+11 −10 src/storage/store/string_column.cpp
+10 −10 src/storage/store/struct_column.cpp
+28 −0 src/storage/store/struct_column_chunk.cpp
+7 −0 test/test_files/exceptions/binder/binder_error.test
+9 −0 test/test_files/rdf/memory-bug.test
+204 −0 test/test_files/tinysnb/agg/hash.test
+1 −1 test/test_files/tinysnb/exception/timestamp.test
+0 −1 test/test_files/transaction/delete_rel/delete_all_rels_from_large_list.test
+0 −1 test/test_files/transaction/delete_rel/delete_large_num_rels_from_large_list.test
+0 −1 test/test_files/transaction/delete_rel/delete_multiple_rels.test
+1 −0 test/test_files/update_node/create_empty.test
+0 −2 test/test_files/update_rel/create_read_tinysnb.test
+20 −0 test/test_files/update_rel/delete_tinysnb.test
+2 −2 tools/shell/embedded_shell.cpp
+221 −96 tools/shell/linenoise.cpp

0 comments on commit e0201af

Please sign in to comment.