rename union to unionAll

This commit is contained in:
Grahame Grieve 2023-10-25 06:44:11 +11:00
parent cae102bc7a
commit 238793b4a4
2 changed files with 7 additions and 7 deletions

View File

@ -135,7 +135,7 @@ public class Runner implements IEvaluationContext {
focus.add(b);
}
// } else if (select.has("union")) {
// } else if (select.has("unionAll")) {
// focus.addAll(executeUnion(select, b));
List<List<Cell>> tempRows = new ArrayList<>();
@ -149,7 +149,7 @@ public class Runner implements IEvaluationContext {
executeColumn(column, f, rowsToAdd);
}
for (JsonObject sub : select.getJsonObjects("union")) {
for (JsonObject sub : select.getJsonObjects("unionAll")) {
executeSelect(sub, f, rowsToAdd);
}

View File

@ -106,8 +106,8 @@ public class Validator {
checkForEach(path, viewDefinition, viewDefinition.get("forEach"), t);
} else if (viewDefinition.has("forEachOrNull")) {
checkForEachOrNull(path, viewDefinition, viewDefinition.get("forEachOrNull"), t);
} else if (viewDefinition.has("union")) {
checkUnion(path, viewDefinition, viewDefinition.get("union"), t);
} else if (viewDefinition.has("unionAll")) {
checkUnion(path, viewDefinition, viewDefinition.get("unionAll"), t);
} else {
i = 0;
if (checkAllObjects(path, viewDefinition, "select")) {
@ -135,8 +135,8 @@ public class Validator {
if (t != null) {
boolean content = false;
if (select.has("union")) {
content = checkUnion(path, select, select.get("union"), t);
if (select.has("unionAll")) {
content = checkUnion(path, select, select.get("unionAll"), t);
}
if (select.has("column")) {
@ -181,7 +181,7 @@ public class Validator {
private boolean checkUnion(String path, JsonObject focus, JsonElement expression, TypeDetails t) {
JsonElement a = focus.get("union");
JsonElement a = focus.get("unionAll");
if (!(a instanceof JsonArray)) {
error(path+".union", a, "union is not an array", IssueType.INVALID);
return false;