Skip to content

Commit

Permalink
edit
Browse files Browse the repository at this point in the history
  • Loading branch information
usfalami committed Aug 28, 2024
1 parent 6af7b27 commit 848f22b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/java/org/usf/jquery/core/DBColumn.java
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ default OperationColumn substring(int start, int end) {
return Operator.substring().operation(this, start, end);
}

default OperationColumn concat(String... str) {
default OperationColumn concat(Object... str) {
return Operator.concat().operation(arrayJoin(str, this, 0));
}

Expand Down Expand Up @@ -338,11 +338,13 @@ default OperationColumn decimal(int digit, int precision) {
return Operator.decimal().operation(this, digit, precision);
}

//aggregate functions
//other functions

default OperationColumn coalesce(Object o) {
return Operator.coalesce().operation(this, o);
}

//aggregate functions

default OperationColumn count() {
return Operator.count().operation(this);
Expand Down

0 comments on commit 848f22b

Please sign in to comment.