Pg views and sqlite views, patch from wreis
[dbsrgits/SQL-Translator.git] / t / 46xml-to-pg.t
index e3b3540..4747e16 100644 (file)
@@ -59,7 +59,8 @@ CREATE TABLE "Another" (
 
 
 
-CREATE OR REPLACE VIEW "email_list" ( "email" ) AS (
+DROP VIEW "email_list";
+CREATE VIEW "email_list" ( "email" ) AS (
     SELECT email FROM Basic WHERE email IS NOT NULL
   );