You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add mogrify method to cursor to evaluate full query (#28)
* Add mogrify method to cursor to evaluate full query
* Use DefaultDialect definition of unicode items
* Support JSON type
* Allow support multi-value inserts
* JSON/VARIANT are same thing
* No cascade on Drop Schema
least seven decimal places when using the generic Float type.
176
176
177
177
"""
178
-
returnexclusions.closed() #I couldn't get the test for this one working, maybe when the driver returns a python decimal?
178
+
returnexclusions.closed() #ToDo - I couldn't get the test for this one working, not sure where the issue is - AssertionError: {Decimal('15.7563829')} != {Decimal('15.7563827')}
179
179
180
180
@property
181
181
defarray_type(self):
@@ -186,3 +186,9 @@ def float_is_numeric(self):
186
186
"""target backend uses Numeric for Float/Dual"""
187
187
188
188
returnexclusions.closed()
189
+
190
+
@property
191
+
defjson_type(self):
192
+
"""target platform implements a native JSON type."""
193
+
194
+
returnexclusions.closed() #ToDo - This could be enabled if primary keys were supported
0 commit comments