File tree Expand file tree Collapse file tree 1 file changed +14
-15
lines changed
src/main/java/org/usf/jquery/core Expand file tree Collapse file tree 1 file changed +14
-15
lines changed Original file line number Diff line number Diff line change @@ -365,21 +365,6 @@ default OperationColumn sum() {
365
365
default OperationColumn avg () {
366
366
return Operator .avg ().operation (this );
367
367
}
368
-
369
-
370
- //window functions
371
-
372
- default OperationColumn rank () {
373
- return Operator .rank ().operation (this );
374
- }
375
-
376
- default OperationColumn rowNumber () {
377
- return Operator .rowNumber ().operation (this );
378
- }
379
-
380
- default OperationColumn denseRank () {
381
- return Operator .denseRank ().operation (this );
382
- }
383
368
384
369
//pipe functions
385
370
@@ -423,6 +408,20 @@ static OperationColumn countAll() {
423
408
return Operator .count ().operation (column ("*" ));
424
409
}
425
410
411
+ //window functions
412
+
413
+ static OperationColumn rank () {
414
+ return Operator .rank ().operation ();
415
+ }
416
+
417
+ static OperationColumn rowNumber () {
418
+ return Operator .rowNumber ().operation ();
419
+ }
420
+
421
+ static OperationColumn denseRank () {
422
+ return Operator .denseRank ().operation ();
423
+ }
424
+
426
425
static DBColumn column (@ NonNull String value ) {
427
426
return b -> value ;
428
427
}
You can’t perform that action at this time.
0 commit comments