File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ database
137137 .from(t)
138138 .select(t.departmentId, avg(t.salary))
139139 .groupBy(t.departmentId)
140- .having { avg(t.salary) greater 100.0 }
140+ .having { avg(t.salary) gt 100.0 }
141141 .forEach { row ->
142142 println (" ${row.getInt(1 )} :${row.getDouble(2 )} " )
143143 }
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ database
137137 .from(t)
138138 .select(t.departmentId, avg(t.salary))
139139 .groupBy(t.departmentId)
140- .having { avg(t.salary) greater 100.0 }
140+ .having { avg(t.salary) gt 100.0 }
141141 .forEach { row ->
142142 println (" ${row.getInt(1 )} :${row.getDouble(2 )} " )
143143 }
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ database
137137 .from(t)
138138 .select(t.departmentId, avg(t.salary))
139139 .groupBy(t.departmentId)
140- .having { avg(t.salary) greater 100.0 }
140+ .having { avg(t.salary) gt 100.0 }
141141 .forEach { row ->
142142 println (" ${row.getInt(1 )} :${row.getDouble(2 )} " )
143143 }
You can’t perform that action at this time.
0 commit comments