# Verify there are no duplicate values in the table.
query I
SELECT COUNT(k) - COUNT(DISTINCT k) from T;
----
0

# Verify there are no gaps in the table.
query I
SELECT MAX(k) - COUNT(k) from T;
----
0
