added expected trigger and stored procedure output
Aaron Trevena [Sat, 13 Jun 2009 19:28:24 +0000 (19:28 +0000)]
t/46xml-to-pg.t

index dcdb01f..215d42f 100644 (file)
@@ -65,4 +65,9 @@ CREATE VIEW "email_list" ( "email" ) AS
 ALTER TABLE "Basic" ADD FOREIGN KEY ("another_id")
   REFERENCES "Another" ("id") DEFERRABLE;
 
+CREATE TRIGGER foo_trigger after insert ON Basic update modified=timestamp();;
+
+CREATE TRIGGER bar_trigger before insert or update ON Basic update modified2=timestamp();;
+
+select foo from bar
 SQL