Skip to content

Commit

Permalink
Fixed test failure when $TAPSCHEMA` is set.
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed May 28, 2009
1 parent d4f8ed7 commit a050b3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/ruletap.sql
Expand Up @@ -18,7 +18,7 @@ CREATE RULE upd_me AS ON UPDATE TO public.sometab DO ALSO SELECT now();
CREATE TABLE public.toview ( id INT );
CREATE RULE "_RETURN" AS ON SELECT TO public.toview DO INSTEAD SELECT 42 AS id;

CREATE TABLE widgets (id int);
CREATE TABLE public.widgets (id int);
CREATE RULE del_me AS ON DELETE TO public.widgets DO NOTHING;
CREATE RULE ins_me AS ON INSERT TO public.widgets DO NOTHING;

Expand Down

0 comments on commit a050b3b

Please sign in to comment.