fix updatable_views.out to expect base_tbl to be replicated
authorTomas Vondra <[email protected]>
Sun, 22 Jan 2017 17:36:24 +0000 (18:36 +0100)
committerTomas Vondra <[email protected]>
Sun, 22 Jan 2017 17:36:24 +0000 (18:36 +0100)
src/test/regress/expected/updatable_views.out

index fd70e9050d185ee72d2b5b484db8eb3ae40028b5..e2502ef55aa5bb21aee03727977ec7f9337e6960 100644 (file)
@@ -948,7 +948,7 @@ NOTICE:  drop cascades to view rw_view1
 CREATE USER regress_view_user1;
 CREATE USER regress_view_user2;
 SET SESSION AUTHORIZATION regress_view_user1;
-CREATE TABLE base_tbl(a int, b text, c float);
+CREATE TABLE base_tbl(a int, b text, c float) DISTRIBUTE BY REPLICATION;
 INSERT INTO base_tbl VALUES (1, 'Row 1', 1.0);
 CREATE VIEW rw_view1 AS SELECT b AS bb, c AS cc, a AS aa FROM base_tbl;
 INSERT INTO rw_view1 VALUES ('Row 2', 2.0, 2);