Added test case for CASSANDRA-13364
Project: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/commit/ec6b9581 Tree: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/tree/ec6b9581 Diff: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/diff/ec6b9581 Branch: refs/heads/master Commit: ec6b9581eb8c79edc0cde2f5ad045e6951acfa43 Parents: 795d91c Author: Stefania Alborghetti <[email protected]> Authored: Wed Mar 29 11:20:53 2017 +0800 Committer: Stefania Alborghetti <[email protected]> Committed: Wed Mar 29 11:20:53 2017 +0800 ---------------------------------------------------------------------- cqlsh_tests/cqlsh_copy_tests.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra-dtest/blob/ec6b9581/cqlsh_tests/cqlsh_copy_tests.py ---------------------------------------------------------------------- diff --git a/cqlsh_tests/cqlsh_copy_tests.py b/cqlsh_tests/cqlsh_copy_tests.py index d4a49fa..43d33db 100644 --- a/cqlsh_tests/cqlsh_copy_tests.py +++ b/cqlsh_tests/cqlsh_copy_tests.py @@ -243,6 +243,7 @@ class CqlshCopyTest(Tester): u frozen<list<list<address_type>>>, v frozen<map<map<int,int>,set<text>>>, w frozen<set<set<inet>>>, + x map<text, frozen<list<text>>> )''') default_time_format = self.default_time_format @@ -337,7 +338,8 @@ class CqlshCopyTest(Tester): # first set is contained in the second set or else they will not sort consistently # and this will cause comparison problems when comparing with csv strings therefore failing # some tests - ImmutableSet([ImmutableSet(['127.0.0.1']), ImmutableSet(['127.0.0.1', '127.0.0.2'])]) + ImmutableSet([ImmutableSet(['127.0.0.1']), ImmutableSet(['127.0.0.1', '127.0.0.2'])]), + {'key1': ['value1', 'value2']} # map<text, frozen<list<text>>> ) @contextmanager @@ -1727,8 +1729,8 @@ class CqlshCopyTest(Tester): self.all_datatypes_prepare() insert_statement = self.session.prepare( - """INSERT INTO testdatatype (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w) - VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)""") + """INSERT INTO testdatatype (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x) + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)""") self.session.execute(insert_statement, self.data) def _test(prepared_statements): @@ -1796,8 +1798,8 @@ class CqlshCopyTest(Tester): self.all_datatypes_prepare() insert_statement = self.session.prepare( - """INSERT INTO testdatatype (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w) - VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)""") + """INSERT INTO testdatatype (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x) + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)""") self.session.execute(insert_statement, self.data) tempfile = self.get_temp_file() --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
