Skip to content

Commit 87eeb7b

Browse files
committed
rebase
1 parent df94605 commit 87eeb7b

File tree

1 file changed

+2
-2
lines changed
  • x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate

1 file changed

+2
-2
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/Deriv.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ public Deriv(Source source, @Param(name = "field", type = { "long", "integer", "
4343
}
4444

4545
public Deriv(Source source, Expression field, Expression timestamp) {
46-
super(source, field, Literal.TRUE, List.of(timestamp));
46+
super(source, field, Literal.TRUE, NO_WINDOW, List.of(timestamp));
4747
this.timestamp = timestamp;
4848
}
4949

5050
public Deriv(Source source, Expression field, Expression filter, Expression timestamp) {
51-
super(source, field, filter, List.of(timestamp));
51+
super(source, field, filter, NO_WINDOW, List.of(timestamp));
5252
this.timestamp = timestamp;
5353
}
5454

0 commit comments

Comments
 (0)