From 931337b4a253d89a0ac309b305f38f6c8af0ce10 Mon Sep 17 00:00:00 2001 From: Kishan Karunaratne Date: Thu, 23 Apr 2015 18:06:39 -0700 Subject: [PATCH] Update date/time datatype tests to run on C* 3.0 As per CASSANDRA-7523, the new date and time types have been pushed back to C* 3.0 / protocol v4. --- tests/integration/datatype_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/datatype_utils.py b/tests/integration/datatype_utils.py index bd76c36f..fb437d75 100644 --- a/tests/integration/datatype_utils.py +++ b/tests/integration/datatype_utils.py @@ -57,7 +57,7 @@ def update_datatypes(): if _cass_version >= (2, 1, 0): COLLECTION_TYPES.append('tuple') - if _cass_version >= (2, 1, 5): + if _cass_version >= (3, 0, 0): PRIMITIVE_DATATYPES.append('date') PRIMITIVE_DATATYPES.append('time')