@itwin/ecsql-common 4.5.0-dev.29 → 4.5.0-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/lib/cjs/ECSqlAst.js +6 -6
- package/lib/cjs/ECSqlAst.js.map +1 -1
- package/lib/esm/ECSqlAst.js +6 -6
- package/lib/esm/ECSqlAst.js.map +1 -1
- package/package.json +4 -4
package/lib/cjs/ECSqlAst.js
CHANGED
|
@@ -1781,12 +1781,12 @@ class ClassNameExpr extends ClassRefExpr {
|
|
|
1781
1781
|
if (!match) {
|
|
1782
1782
|
throw new Error("ECSQL className must follow syntax: [+][ALL|ONLY] [tablespace.][.|:][schemaOrAlias]][.|:][className] [AS] [alias");
|
|
1783
1783
|
}
|
|
1784
|
-
const plus = match
|
|
1785
|
-
const allOrOnlyStr = match
|
|
1786
|
-
const tablespace = match
|
|
1787
|
-
const schemaOrAlias = match
|
|
1788
|
-
const className = match
|
|
1789
|
-
const alias = match
|
|
1784
|
+
const plus = match[2];
|
|
1785
|
+
const allOrOnlyStr = match[3];
|
|
1786
|
+
const tablespace = match[5];
|
|
1787
|
+
const schemaOrAlias = match[6];
|
|
1788
|
+
const className = match[7];
|
|
1789
|
+
const alias = match[11];
|
|
1790
1790
|
if (!schemaOrAlias || !className)
|
|
1791
1791
|
throw new Error("ECSQL className must follow syntax: [+][ALL|ONLY] [tablespace.][.|:][schemaOrAlias]][.|:][className] [AS] [alias");
|
|
1792
1792
|
let polyInfo;
|