github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/pkg/ccl/logictestccl/testdata/logic_test/restore (about) 1 # LogicTest: local 2 3 # Check that we get through parsing and license check. 4 statement error pq: failed to open backup storage location: unsupported storage scheme: "" 5 RESTORE foo FROM "bar" 6 7 # Check that user defined types are disallowed in backups. 8 statement ok 9 SET experimental_enable_enums=true; 10 CREATE TYPE t AS ENUM ('hello'); 11 CREATE TABLE tt (x t) 12 13 statement error pq: unimplemented: user defined types in backup 14 BACKUP TABLE tt TO ""