blob: 8dfe07240ecaffdfd7e67db17bd6d111f2fca58d [file] [log] [blame]
drop dataverse custord if exists;
create dataverse custord;
use dataverse custord;
drop dataset Customers;
// Creating this duplicate type should fail,
// and rollback should add the Customer type again.
create type StreetType as closed {
number: int32?,
name: string
}