lbug 0.12.3-dev.27 → 0.12.3-dev.29

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 (39) hide show
  1. package/lbug-source/CMakeLists.txt +1 -1
  2. package/lbug-source/Makefile +14 -2
  3. package/lbug-source/extension/duckdb/src/catalog/duckdb_catalog.cpp +1 -1
  4. package/lbug-source/extension/duckdb/src/catalog/duckdb_table_catalog_entry.cpp +43 -4
  5. package/lbug-source/extension/duckdb/src/connector/duckdb_result_converter.cpp +6 -0
  6. package/lbug-source/extension/duckdb/src/connector/duckdb_secret_manager.cpp +1 -1
  7. package/lbug-source/extension/duckdb/src/function/duckdb_scan.cpp +49 -4
  8. package/lbug-source/extension/duckdb/src/include/catalog/duckdb_table_catalog_entry.h +6 -1
  9. package/lbug-source/extension/duckdb/src/include/function/duckdb_scan.h +2 -0
  10. package/lbug-source/extension/duckdb/test/test_files/duckdb.test +28 -0
  11. package/lbug-source/extension/extension_config.cmake +3 -2
  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_graph_pattern.cpp +30 -3
  16. package/lbug-source/src/catalog/catalog_set.cpp +1 -0
  17. package/lbug-source/src/function/table/table_function.cpp +11 -2
  18. package/lbug-source/src/include/catalog/catalog_entry/table_catalog_entry.h +7 -0
  19. package/lbug-source/src/include/common/string_format.h +2 -2
  20. package/lbug-source/src/include/function/table/bind_data.h +12 -1
  21. package/lbug-source/src/include/function/table/table_function.h +2 -0
  22. package/lbug-source/src/include/optimizer/order_by_push_down_optimizer.h +21 -0
  23. package/lbug-source/src/include/planner/operator/logical_table_function_call.h +14 -1
  24. package/lbug-source/src/optimizer/CMakeLists.txt +2 -1
  25. package/lbug-source/src/optimizer/limit_push_down_optimizer.cpp +12 -0
  26. package/lbug-source/src/optimizer/optimizer.cpp +4 -0
  27. package/lbug-source/src/optimizer/order_by_push_down_optimizer.cpp +123 -0
  28. package/lbug-source/src/optimizer/projection_push_down_optimizer.cpp +5 -1
  29. package/lbug-source/src/parser/transform/transform_graph_pattern.cpp +6 -1
  30. package/lbug-source/src/planner/join_order/cardinality_estimator.cpp +11 -2
  31. package/lbug-source/src/planner/operator/logical_table_function_call.cpp +4 -0
  32. package/lbug-source/src/planner/plan/plan_join_order.cpp +16 -1
  33. package/lbug-source/third_party/antlr4_cypher/cypher_parser.cpp +1332 -1316
  34. package/lbug-source/third_party/antlr4_cypher/include/cypher_parser.h +2 -1
  35. package/package.json +1 -1
  36. package/prebuilt/lbugjs-darwin-arm64.node +0 -0
  37. package/prebuilt/lbugjs-linux-arm64.node +0 -0
  38. package/prebuilt/lbugjs-linux-x64.node +0 -0
  39. package/prebuilt/lbugjs-win32-x64.node +0 -0
@@ -2162,7 +2162,8 @@ public:
2162
2162
  public:
2163
2163
  OC_LabelNameContext(antlr4::ParserRuleContext *parent, size_t invokingState);
2164
2164
  virtual size_t getRuleIndex() const override;
2165
- OC_SchemaNameContext *oC_SchemaName();
2165
+ std::vector<OC_SchemaNameContext *> oC_SchemaName();
2166
+ OC_SchemaNameContext* oC_SchemaName(size_t i);
2166
2167
 
2167
2168
 
2168
2169
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lbug",
3
- "version": "0.12.3-dev.27",
3
+ "version": "0.12.3-dev.29",
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