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

     1  # LogicTest: local
     2  
     3  # CCL-only statements error out trying to handle the parsed statements.
     4  
     5  statement error pgcode XXC01 a CCL binary is required to use this statement type: \*tree\.Backup
     6  BACKUP foo TO "bar"
     7  
     8  statement error pgcode XXC01 a CCL binary is required to use this statement type: \*tree\.Restore
     9  RESTORE foo FROM "bar"
    10  
    11  statement error pgcode XXC01 a CCL binary is required to use this statement type: \*tree\.CreateChangefeed
    12  CREATE CHANGEFEED FOR foo
    13  
    14  query error pgcode XXC01 a CCL binary is required to use this statement type
    15  BACKUP DATABASE foo TO '/bar' INCREMENTAL FROM '/baz'
    16  
    17  query error  pgcode XXC01 a CCL binary is required to use this statement type
    18  RESTORE DATABASE foo FROM '/bar'