lbug 0.12.3-dev.29 → 0.12.3-dev.30

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 (27) hide show
  1. package/lbug-source/CMakeLists.txt +1 -1
  2. package/lbug-source/scripts/antlr4/Cypher.g4 +2 -2
  3. package/lbug-source/scripts/antlr4/hash.md5 +1 -1
  4. package/lbug-source/src/antlr4/Cypher.g4 +2 -2
  5. package/lbug-source/src/binder/bind/bind_ddl.cpp +75 -3
  6. package/lbug-source/src/catalog/catalog.cpp +2 -1
  7. package/lbug-source/src/catalog/catalog_entry/rel_group_catalog_entry.cpp +39 -7
  8. package/lbug-source/src/function/table/show_connection.cpp +6 -1
  9. package/lbug-source/src/function/table/show_tables.cpp +10 -2
  10. package/lbug-source/src/include/binder/ddl/bound_create_table_info.h +16 -3
  11. package/lbug-source/src/include/catalog/catalog_entry/rel_group_catalog_entry.h +19 -2
  12. package/lbug-source/src/include/common/types/types.h +1 -0
  13. package/lbug-source/src/include/storage/table/foreign_rel_table.h +56 -0
  14. package/lbug-source/src/parser/transform/transform_expression.cpp +1 -1
  15. package/lbug-source/src/parser/transformer.cpp +7 -1
  16. package/lbug-source/src/processor/operator/scan/scan_rel_table.cpp +7 -1
  17. package/lbug-source/src/storage/storage_manager.cpp +7 -1
  18. package/lbug-source/src/storage/table/CMakeLists.txt +1 -0
  19. package/lbug-source/src/storage/table/foreign_rel_table.cpp +63 -0
  20. package/lbug-source/third_party/antlr4_cypher/cypher_parser.cpp +504 -483
  21. package/lbug-source/third_party/antlr4_cypher/include/cypher_parser.h +3 -2
  22. package/lbug-source/tools/nodejs_api/package.json +4 -2
  23. package/package.json +9 -2
  24. package/prebuilt/lbugjs-darwin-arm64.node +0 -0
  25. package/prebuilt/lbugjs-linux-arm64.node +0 -0
  26. package/prebuilt/lbugjs-linux-x64.node +0 -0
  27. package/prebuilt/lbugjs-win32-x64.node +0 -0
@@ -2885,7 +2885,7 @@ public:
2885
2885
  public:
2886
2886
  OC_PropertyKeyNameContext(antlr4::ParserRuleContext *parent, size_t invokingState);
2887
2887
  virtual size_t getRuleIndex() const override;
2888
- OC_SchemaNameContext *oC_SchemaName();
2888
+ OC_SymbolicNameContext *oC_SymbolicName();
2889
2889
 
2890
2890
 
2891
2891
  };
@@ -2919,7 +2919,8 @@ public:
2919
2919
  public:
2920
2920
  OC_SchemaNameContext(antlr4::ParserRuleContext *parent, size_t invokingState);
2921
2921
  virtual size_t getRuleIndex() const override;
2922
- OC_SymbolicNameContext *oC_SymbolicName();
2922
+ std::vector<OC_SymbolicNameContext *> oC_SymbolicName();
2923
+ OC_SymbolicNameContext* oC_SymbolicName(size_t i);
2923
2924
 
2924
2925
 
2925
2926
  };
@@ -12,17 +12,19 @@
12
12
  "types": "./lbug.d.ts"
13
13
  }
14
14
  },
15
+ "files": ["index.js", "index.mjs", "lbug.d.ts", "lbugjs.node"],
15
16
  "type": "commonjs",
16
17
  "homepage": "https://ladybugdb.com/",
17
18
  "repository": {
18
19
  "type": "git",
19
- "url": "https://github.com/LadybugDB/ladybug"
20
+ "url": "git+https://github.com/LadybugDB/ladybug.git"
20
21
  },
21
22
  "scripts": {
22
23
  "test": "mocha test --timeout 20000",
23
24
  "clean": "node clean.js",
24
25
  "clean-all": "node clean.js all",
25
- "build": "node build.js"
26
+ "build": "node build.js",
27
+ "prepublishOnly": "npm run build"
26
28
  },
27
29
  "author": "Ladybug Team",
28
30
  "license": "MIT",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lbug",
3
- "version": "0.12.3-dev.29",
3
+ "version": "0.12.3-dev.30",
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",
@@ -12,17 +12,24 @@
12
12
  "types": "./lbug.d.ts"
13
13
  }
14
14
  },
15
+ "files": [
16
+ "index.js",
17
+ "index.mjs",
18
+ "lbug.d.ts",
19
+ "lbugjs.node"
20
+ ],
15
21
  "type": "commonjs",
16
22
  "homepage": "https://ladybugdb.com/",
17
23
  "repository": {
18
24
  "type": "git",
19
- "url": "https://github.com/LadybugDB/ladybug"
25
+ "url": "git+https://github.com/LadybugDB/ladybug.git"
20
26
  },
21
27
  "scripts": {
22
28
  "test": "mocha test --timeout 20000",
23
29
  "clean": "node clean.js",
24
30
  "clean-all": "node clean.js all",
25
31
  "build": "node build.js",
32
+ "prepublishOnly": "npm run build",
26
33
  "install": "node install.js"
27
34
  },
28
35
  "author": "Ladybug Team",
Binary file
Binary file
Binary file
Binary file