File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
sql/src/main/scala/app/softnetwork/elastic/sql/function/aggregate Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -155,8 +155,7 @@ package object aggregate {
155155 .update(request)
156156 .asInstanceOf [FirstValue ]
157157 .copy(
158- identifier = identifier.update(request),
159- orderBy = orderBy.update(request)
158+ identifier = identifier.update(request)
160159 )
161160 }
162161
@@ -175,8 +174,7 @@ package object aggregate {
175174 .update(request)
176175 .asInstanceOf [LastValue ]
177176 .copy(
178- identifier = identifier.update(request),
179- orderBy = orderBy.update(request)
177+ identifier = identifier.update(request)
180178 )
181179 }
182180
@@ -196,7 +194,6 @@ package object aggregate {
196194 .asInstanceOf [ArrayAgg ]
197195 .copy(
198196 identifier = identifier.update(request),
199- orderBy = orderBy.update(request),
200197 limit = limit.orElse(request.limit)
201198 )
202199 override def multivalued : Boolean = true
You can’t perform that action at this time.
0 commit comments