File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change
1
+ 3.15.1
2
+ ======
3
+ September 6, 2018
4
+
5
+ Bug Fixes
6
+ ---------
7
+ * C* 4.0 schema-parsing logic breaks running against DSE 6.0.X (PYTHON-1018)
8
+
1
9
3.15.0
2
10
======
3
11
August 30, 2018
Original file line number Diff line number Diff line change @@ -2720,7 +2720,9 @@ def export_as_string(self):
2720
2720
2721
2721
def get_schema_parser (connection , server_version , timeout ):
2722
2722
server_major_version = int (server_version .split ('.' )[0 ])
2723
- if server_major_version >= 4 :
2723
+ # check for DSE version
2724
+ has_build_version = len (server_version .split ('.' )) > 3
2725
+ if server_major_version >= 4 and not has_build_version :
2724
2726
return SchemaParserV4 (connection , timeout )
2725
2727
if server_major_version >= 3 :
2726
2728
return SchemaParserV3 (connection , timeout )
You can’t perform that action at this time.
0 commit comments