github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/pkg/sql/logictest/testdata/parallel_test/subquery_retry_multinode/final (about) 1 # Verify there are no duplicate values in the table. 2 query I 3 SELECT count(k) - count(DISTINCT k) from T; 4 ---- 5 0 6 7 # Verify there are no gaps in the table. 8 query I 9 SELECT max(k) - count(k) from T; 10 ---- 11 0