Repository: cassandra-dtest Updated Branches: refs/heads/master 616f952f5 -> fc68a0de8
Expect value column in sstableloader_with_failing_2i_test when reading IndexInfo table patch by Joel Knighton; reviewed by Alex Petrov for CASSANDRA-14037 Project: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/commit/fc68a0de Tree: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/tree/fc68a0de Diff: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/diff/fc68a0de Branch: refs/heads/master Commit: fc68a0de8d05082a0a78196695572ff2346179c4 Parents: 616f952 Author: Joel Knighton <[email protected]> Authored: Tue Nov 28 23:47:04 2017 -0600 Committer: Joel Knighton <[email protected]> Committed: Wed Nov 29 09:52:01 2017 -0600 ---------------------------------------------------------------------- sstable_generation_loading_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra-dtest/blob/fc68a0de/sstable_generation_loading_test.py ---------------------------------------------------------------------- diff --git a/sstable_generation_loading_test.py b/sstable_generation_loading_test.py index b45b338..335f384 100644 --- a/sstable_generation_loading_test.py +++ b/sstable_generation_loading_test.py @@ -330,7 +330,7 @@ class TestSSTableGenerationAndLoading(BaseSStableLoaderTest): create_schema_with_2i(session) # The table should exist and be empty, and the index should be empty and marked as built - assert_one(session, """SELECT * FROM system."IndexInfo" WHERE table_name='k'""", ['k', 'idx']) + assert_one(session, """SELECT * FROM system."IndexInfo" WHERE table_name='k'""", ['k', 'idx', None]) assert_none(session, "SELECT * FROM k.t") assert_none(session, "SELECT * FROM k.t WHERE v = 8") --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
