Repository: cassandra-dtest
Updated Branches:
  refs/heads/master 0e6a1e6ed -> 4f2996b46


Mark PK as NOT NULL explicitly for MV in pushed_notifications_test.py


Project: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/commit/4f2996b4
Tree: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/tree/4f2996b4
Diff: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/diff/4f2996b4

Branch: refs/heads/master
Commit: 4f2996b46a07cb371cae1180638e1b8d7039bf50
Parents: 0e6a1e6
Author: Aleksey Yeschenko <alek...@yeschenko.com>
Authored: Tue Apr 10 23:38:32 2018 +0100
Committer: Aleksey Yeschenko <alek...@yeschenko.com>
Committed: Tue Apr 10 23:38:32 2018 +0100

----------------------------------------------------------------------
 pushed_notifications_test.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra-dtest/blob/4f2996b4/pushed_notifications_test.py
----------------------------------------------------------------------
diff --git a/pushed_notifications_test.py b/pushed_notifications_test.py
index 9b888de..3447fdc 100644
--- a/pushed_notifications_test.py
+++ b/pushed_notifications_test.py
@@ -301,7 +301,7 @@ class TestPushedNotifications(Tester):
         session.execute("create TABLE t (k int PRIMARY KEY , v int)")
         session.execute("alter TABLE t add v1 int;")
 
-        session.execute("create MATERIALIZED VIEW mv as select * from t WHERE 
v IS NOT NULL AND v1 IS NOT NULL PRIMARY KEY (v, k)")
+        session.execute("create MATERIALIZED VIEW mv as select * from t WHERE 
v IS NOT NULL AND k IS NOT NULL PRIMARY KEY (v, k)")
         session.execute(" alter materialized view mv with min_index_interval = 
100")
 
         session.execute("drop MATERIALIZED VIEW mv")


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org

Reply via email to