Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 9A95F200D41 for ; Tue, 7 Nov 2017 09:23:39 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 99442160C00; Tue, 7 Nov 2017 08:23:39 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id E012F1609C8 for ; Tue, 7 Nov 2017 09:23:38 +0100 (CET) Received: (qmail 47659 invoked by uid 500); 7 Nov 2017 08:23:38 -0000 Mailing-List: contact pr-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: pr@cassandra.apache.org Delivered-To: mailing list pr@cassandra.apache.org Received: (qmail 47629 invoked by uid 99); 7 Nov 2017 08:23:37 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2017 08:23:37 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BC09FDFCA1; Tue, 7 Nov 2017 08:23:37 +0000 (UTC) From: ptnapoleon To: pr@cassandra.apache.org Reply-To: pr@cassandra.apache.org References: In-Reply-To: Subject: [GitHub] cassandra-dtest pull request #9: 10857 trunk Content-Type: text/plain Message-Id: <20171107082337.BC09FDFCA1@git1-us-west.apache.org> Date: Tue, 7 Nov 2017 08:23:37 +0000 (UTC) archived-at: Tue, 07 Nov 2017 08:23:39 -0000 Github user ptnapoleon commented on a diff in the pull request: https://github.com/apache/cassandra-dtest/pull/9#discussion_r149296143 --- Diff: cql_tests.py --- @@ -698,6 +719,54 @@ def many_columns_test(self): ",".join(map(lambda i: "c_{}".format(i), range(width))) + " FROM very_wide_table", [[i for i in range(width)]]) + @since("3.11", max_version="3.X") + def drop_compact_storage_flag_test(self): + """ + Test for CASSANDRA-10857, verifying the schema change + distribution across the other nodes. + + """ + + cluster = self.cluster + + cluster.populate(3).start() + node1 = cluster.nodelist()[0] + node2 = cluster.nodelist()[1] + node3 = cluster.nodelist()[2] + time.sleep(0.2) --- End diff -- There's no need for this sleep. --- --------------------------------------------------------------------- To unsubscribe, e-mail: pr-unsubscribe@cassandra.apache.org For additional commands, e-mail: pr-help@cassandra.apache.org