@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/esm/ECSqlAst.js
CHANGED
|
@@ -1772,12 +1772,12 @@ class ClassNameExpr extends ClassRefExpr {
|
|
|
1772
1772
|
if (!match) {
|
|
1773
1773
|
throw new Error("ECSQL className must follow syntax: [+][ALL|ONLY] [tablespace.][.|:][schemaOrAlias]][.|:][className] [AS] [alias");
|
|
1774
1774
|
}
|
|
1775
|
-
const plus = match
|
|
1776
|
-
const allOrOnlyStr = match
|
|
1777
|
-
const tablespace = match
|
|
1778
|
-
const schemaOrAlias = match
|
|
1779
|
-
const className = match
|
|
1780
|
-
const alias = match
|
|
1775
|
+
const plus = match[2];
|
|
1776
|
+
const allOrOnlyStr = match[3];
|
|
1777
|
+
const tablespace = match[5];
|
|
1778
|
+
const schemaOrAlias = match[6];
|
|
1779
|
+
const className = match[7];
|
|
1780
|
+
const alias = match[11];
|
|
1781
1781
|
if (!schemaOrAlias || !className)
|
|
1782
1782
|
throw new Error("ECSQL className must follow syntax: [+][ALL|ONLY] [tablespace.][.|:][schemaOrAlias]][.|:][className] [AS] [alias");
|
|
1783
1783
|
let polyInfo;
|