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 d547523 commit 7d1548e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/usf/jquery/core/OperationColumn.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ else if(operator.is("OVER")) {
}
throw new UnsupportedOperationException("require only one view");
}
return requirePartition().resolve(ctx); //no aggregation
requirePartition().resolve(ctx); //no aggregation
return true;
}
return !operator.is(ConstantOperator.class) && tryResolveAll(ctx, args);
}
Expand Down

0 comments on commit 7d1548e

Please sign in to comment.