[actiosets] fixed join type

This commit is contained in:
Claudio Atzori 2024-02-05 16:55:36 +02:00
parent 08162902ab
commit d86b909db2
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ public class PromoteAction {
public static String joinTypeForStrategy(PromoteAction.Strategy strategy) {
switch (strategy) {
case ENRICH:
return "join";
return "left_outer";
case UPSERT:
return "full_outer";
default: