universql
universql copied to clipboard
DROP SCHEMA does not work
--works
CREATE SCHEMA schema_name;
CREATE OR REPLACE SCHEMA schema_name;
CREATE IF NOT EXISTS SCHEMA schema_name;
--fails
DROP SCHEMA schema_name;