Skip to content

Commit 4bd680d

Browse files
committed
rm sum in test_no_duplicate_name
Signed-off-by: jayzhan211 <[email protected]>
1 parent 4b13fc0 commit 4bd680d

File tree

1 file changed

+1
-3
lines changed
  • datafusion/functions-aggregate/src

1 file changed

+1
-3
lines changed

datafusion/functions-aggregate/src/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,7 @@ mod tests {
138138
for func in all_default_aggregate_functions() {
139139
// TODO: remove this
140140
// These functions are in intermidiate migration state, skip them
141-
if func.name().to_lowercase() == "sum"
142-
|| func.name().to_lowercase() == "count"
143-
{
141+
if func.name().to_lowercase() == "count" {
144142
continue;
145143
}
146144
assert!(

0 commit comments

Comments
 (0)