lbug 0.12.3-dev.15 → 0.12.3-dev.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/lbug-source/CMakeLists.txt +1 -1
  2. package/lbug-source/dataset/demo-db/graph-std/demo_indices_follows.parquet +0 -0
  3. package/lbug-source/dataset/demo-db/graph-std/demo_indices_livesin.parquet +0 -0
  4. package/lbug-source/dataset/demo-db/graph-std/demo_indptr_follows.parquet +0 -0
  5. package/lbug-source/dataset/demo-db/graph-std/demo_indptr_livesin.parquet +0 -0
  6. package/lbug-source/dataset/demo-db/graph-std/demo_mapping_city.parquet +0 -0
  7. package/lbug-source/dataset/demo-db/graph-std/demo_mapping_user.parquet +0 -0
  8. package/lbug-source/dataset/demo-db/graph-std/demo_metadata.parquet +0 -0
  9. package/lbug-source/dataset/demo-db/graph-std/demo_nodes_city.parquet +0 -0
  10. package/lbug-source/dataset/demo-db/graph-std/demo_nodes_user.parquet +0 -0
  11. package/lbug-source/dataset/demo-db/graph-std/schema.cypher +4 -0
  12. package/lbug-source/scripts/antlr4/Cypher.g4 +1 -1
  13. package/lbug-source/scripts/antlr4/hash.md5 +1 -1
  14. package/lbug-source/src/antlr4/Cypher.g4 +1 -1
  15. package/lbug-source/src/binder/bind/bind_ddl.cpp +23 -13
  16. package/lbug-source/src/catalog/catalog.cpp +5 -4
  17. package/lbug-source/src/catalog/catalog_entry/node_table_catalog_entry.cpp +8 -1
  18. package/lbug-source/src/catalog/catalog_entry/rel_group_catalog_entry.cpp +7 -0
  19. package/lbug-source/src/function/function_collection.cpp +2 -1
  20. package/lbug-source/src/function/table/CMakeLists.txt +1 -0
  21. package/lbug-source/src/function/table/disk_size_info.cpp +322 -0
  22. package/lbug-source/src/include/binder/ddl/bound_create_table_info.h +10 -6
  23. package/lbug-source/src/include/catalog/catalog_entry/node_table_catalog_entry.h +5 -3
  24. package/lbug-source/src/include/catalog/catalog_entry/rel_group_catalog_entry.h +4 -2
  25. package/lbug-source/src/include/common/constants.h +1 -0
  26. package/lbug-source/src/include/function/table/simple_table_function.h +6 -0
  27. package/lbug-source/src/include/parser/ddl/create_table_info.h +3 -1
  28. package/lbug-source/src/include/processor/operator/scan/scan_node_table.h +2 -2
  29. package/lbug-source/src/include/storage/storage_manager.h +1 -0
  30. package/lbug-source/src/include/storage/table/node_table.h +6 -1
  31. package/lbug-source/src/include/storage/table/parquet_node_table.h +103 -0
  32. package/lbug-source/src/include/storage/table/parquet_rel_table.h +99 -0
  33. package/lbug-source/src/include/storage/table/rel_table.h +2 -2
  34. package/lbug-source/src/include/transaction/transaction.h +2 -0
  35. package/lbug-source/src/parser/transform/transform_ddl.cpp +6 -1
  36. package/lbug-source/src/processor/operator/persistent/reader/parquet/parquet_reader.cpp +4 -0
  37. package/lbug-source/src/processor/operator/scan/scan_multi_rel_tables.cpp +24 -2
  38. package/lbug-source/src/processor/operator/scan/scan_node_table.cpp +44 -8
  39. package/lbug-source/src/processor/operator/scan/scan_rel_table.cpp +12 -2
  40. package/lbug-source/src/storage/storage_manager.cpp +40 -6
  41. package/lbug-source/src/storage/table/CMakeLists.txt +2 -0
  42. package/lbug-source/src/storage/table/parquet_node_table.cpp +338 -0
  43. package/lbug-source/src/storage/table/parquet_rel_table.cpp +470 -0
  44. package/lbug-source/test/include/test_runner/test_group.h +11 -1
  45. package/lbug-source/test/runner/e2e_test.cpp +7 -1
  46. package/lbug-source/test/test_files/demo_db/demo_db_graph_std.test +43 -0
  47. package/lbug-source/test/test_helper/test_helper.cpp +24 -0
  48. package/lbug-source/test/test_runner/test_parser.cpp +3 -0
  49. package/lbug-source/third_party/antlr4_cypher/cypher_parser.cpp +2761 -2701
  50. package/lbug-source/third_party/antlr4_cypher/include/cypher_parser.h +2 -0
  51. package/package.json +1 -1
  52. package/prebuilt/lbugjs-darwin-arm64.node +0 -0
  53. package/prebuilt/lbugjs-linux-arm64.node +0 -0
  54. package/prebuilt/lbugjs-linux-x64.node +0 -0
  55. package/prebuilt/lbugjs-win32-x64.node +0 -0
@@ -687,6 +687,8 @@ public:
687
687
  antlr4::tree::TerminalNode *AS();
688
688
  OC_QueryContext *oC_Query();
689
689
  KU_IfNotExistsContext *kU_IfNotExists();
690
+ antlr4::tree::TerminalNode *WITH();
691
+ KU_OptionsContext *kU_Options();
690
692
  KU_CreateNodeConstraintContext *kU_CreateNodeConstraint();
691
693
 
692
694
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lbug",
3
- "version": "0.12.3-dev.15",
3
+ "version": "0.12.3-dev.17",
4
4
  "description": "An in-process property graph database management system built for query speed and scalability.",
5
5
  "main": "index.js",
6
6
  "module": "./index.mjs",
Binary file
Binary file
Binary file
Binary file