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.
- package/lbug-source/CMakeLists.txt +1 -1
- package/lbug-source/scripts/antlr4/Cypher.g4 +2 -2
- package/lbug-source/scripts/antlr4/hash.md5 +1 -1
- package/lbug-source/src/antlr4/Cypher.g4 +2 -2
- package/lbug-source/src/binder/bind/bind_ddl.cpp +75 -3
- package/lbug-source/src/catalog/catalog.cpp +2 -1
- package/lbug-source/src/catalog/catalog_entry/rel_group_catalog_entry.cpp +39 -7
- package/lbug-source/src/function/table/show_connection.cpp +6 -1
- package/lbug-source/src/function/table/show_tables.cpp +10 -2
- package/lbug-source/src/include/binder/ddl/bound_create_table_info.h +16 -3
- package/lbug-source/src/include/catalog/catalog_entry/rel_group_catalog_entry.h +19 -2
- package/lbug-source/src/include/common/types/types.h +1 -0
- package/lbug-source/src/include/storage/table/foreign_rel_table.h +56 -0
- package/lbug-source/src/parser/transform/transform_expression.cpp +1 -1
- package/lbug-source/src/parser/transformer.cpp +7 -1
- package/lbug-source/src/processor/operator/scan/scan_rel_table.cpp +7 -1
- package/lbug-source/src/storage/storage_manager.cpp +7 -1
- package/lbug-source/src/storage/table/CMakeLists.txt +1 -0
- package/lbug-source/src/storage/table/foreign_rel_table.cpp +63 -0
- package/lbug-source/third_party/antlr4_cypher/cypher_parser.cpp +504 -483
- package/lbug-source/third_party/antlr4_cypher/include/cypher_parser.h +3 -2
- package/lbug-source/tools/nodejs_api/package.json +4 -2
- package/package.json +9 -2
- package/prebuilt/lbugjs-darwin-arm64.node +0 -0
- package/prebuilt/lbugjs-linux-arm64.node +0 -0
- package/prebuilt/lbugjs-linux-x64.node +0 -0
- 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
|
-
|
|
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
|
|
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.
|
|
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
|