Skip to content

Commit 245adc3

Browse files
committed
Fix query grouping clause in DistinctLengths query
1 parent 764e7e0 commit 245adc3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/explorer/Queries/DistinctLengths.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ protected override string GetQueryStatement(string table, string column)
1919
count(*),
2020
count_noise(*)
2121
from {table}
22-
group by {column}";
22+
group by 1";
2323
}
2424
}
2525
}

0 commit comments

Comments
 (0)