diff options
-rw-r--r-- | CHANGES | 4 | ||||
-rw-r--r-- | lib/sqlalchemy/dialects/mssql/base.py | 1 |
2 files changed, 3 insertions, 2 deletions
@@ -188,7 +188,9 @@ CHANGES - mssql - Re-established initial support for pymssql. - + + - Removed the text_as_varchar option. + - sqlite - Added "native_datetime=True" flag to create_engine(). This will cause the DATE and TIMESTAMP types to skip diff --git a/lib/sqlalchemy/dialects/mssql/base.py b/lib/sqlalchemy/dialects/mssql/base.py index 2ae083d71..facb16490 100644 --- a/lib/sqlalchemy/dialects/mssql/base.py +++ b/lib/sqlalchemy/dialects/mssql/base.py @@ -1079,7 +1079,6 @@ class MSDialect(default.DefaultDialect): supports_default_values = True supports_empty_insert = False execution_ctx_cls = MSExecutionContext - text_as_varchar = False use_scope_identity = True max_identifier_length = 128 schema_name = "dbo" |