@abaplint/cli 2.101.31 → 2.101.32
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/build/cli.js +7 -2
- package/package.json +3 -3
package/build/cli.js
CHANGED
|
@@ -48465,7 +48465,7 @@ class Registry {
|
|
|
48465
48465
|
}
|
|
48466
48466
|
static abaplintVersion() {
|
|
48467
48467
|
// magic, see build script "version.sh"
|
|
48468
|
-
return "2.101.
|
|
48468
|
+
return "2.101.32";
|
|
48469
48469
|
}
|
|
48470
48470
|
getDDICReferences() {
|
|
48471
48471
|
return this.ddicReferences;
|
|
@@ -64876,7 +64876,9 @@ class SelectSingleFullKey {
|
|
|
64876
64876
|
key: "select_single_full_key",
|
|
64877
64877
|
title: "Detect SELECT SINGLE which are possibily not unique",
|
|
64878
64878
|
shortDescription: `Detect SELECT SINGLE which are possibily not unique`,
|
|
64879
|
-
extendedInformation: `Table definitions must be known, ie. inside the errorNamespace
|
|
64879
|
+
extendedInformation: `Table definitions must be known, ie. inside the errorNamespace
|
|
64880
|
+
|
|
64881
|
+
If the statement contains a JOIN it is not checked`,
|
|
64880
64882
|
pseudoComment: "EC CI_NOORDER",
|
|
64881
64883
|
tags: [],
|
|
64882
64884
|
};
|
|
@@ -64917,6 +64919,9 @@ class SelectSingleFullKey {
|
|
|
64917
64919
|
if (!(s.get() instanceof __1.Statements.Select)) {
|
|
64918
64920
|
continue;
|
|
64919
64921
|
}
|
|
64922
|
+
else if (s.findFirstExpression(__1.Expressions.SQLJoin)) {
|
|
64923
|
+
continue;
|
|
64924
|
+
}
|
|
64920
64925
|
else if (s.findTokenSequencePosition("SELECT", "SINGLE") === undefined) {
|
|
64921
64926
|
continue;
|
|
64922
64927
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.101.
|
|
3
|
+
"version": "2.101.32",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://abaplint.org",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@abaplint/core": "^2.101.
|
|
41
|
+
"@abaplint/core": "^2.101.32",
|
|
42
42
|
"@types/chai": "^4.3.5",
|
|
43
43
|
"@types/glob": "^7.2.0",
|
|
44
44
|
"@types/minimist": "^1.2.2",
|
|
45
45
|
"@types/mocha": "^10.0.1",
|
|
46
|
-
"@types/node": "^20.
|
|
46
|
+
"@types/node": "^20.4.0",
|
|
47
47
|
"@types/progress": "^2.0.5",
|
|
48
48
|
"chai": "^4.3.7",
|
|
49
49
|
"chalk": "^5.3.0",
|