Skip to content

Commit

Permalink
edit
Browse files Browse the repository at this point in the history
  • Loading branch information
usfalami committed Sep 13, 2024
1 parent 7d1548e commit 919fa53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/usf/jquery/core/OperationColumn.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ else if(operator.is("OVER")) {
var cTag = "over_" + hashCode(); //over_view_hash
ctx.overView(view).getBuilder().columns(new OperationColumn(operator, args, type).as(cTag)); //clone
overColumn = new ViewColumn(cTag, view, type, null);
return false;
return overColumn.resolve(ctx);
}
throw new UnsupportedOperationException("require only one view");
}
requirePartition().resolve(ctx); //no aggregation
return true;
requirePartition().resolve(ctx);
return true; //!group by
}
return !operator.is(ConstantOperator.class) && tryResolveAll(ctx, args);
}
Expand Down

0 comments on commit 919fa53

Please sign in to comment.