github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/pkg/ccl/logictestccl/testdata/logic_test/drop_index (about)

     1  # LogicTest: 5node
     2  
     3  statement ok
     4  CREATE TABLE t (
     5      k INT PRIMARY KEY,
     6      v STRING,
     7      INDEX secondary (k) STORING (v)
     8  );
     9  
    10  statement ok
    11  ALTER INDEX t@secondary CONFIGURE ZONE USING constraints='[+region=test,+dc=dc1]'
    12  
    13  # Regression test for #36348
    14  
    15  statement ok
    16  DROP INDEX t@secondary