summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/mysql/base.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-02-09 15:29:14 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2015-02-09 15:29:14 -0500
commit1ad236127c060141426c84f446e7b7e773febb31 (patch)
tree36c558309fc719847c76e9a5bcb778cfb1678fb2 /lib/sqlalchemy/dialects/mysql/base.py
parent03038f7e75500e7d5388dedd79d9b35e01b3a677 (diff)
downloadsqlalchemy-1ad236127c060141426c84f446e7b7e773febb31.tar.gz
- A warning is emitted when :func:`.cast` is used with the MySQL
dialect on a type where MySQL does not support CAST; MySQL only supports CAST on a subset of datatypes. SQLAlchemy has for a long time just omitted the CAST for unsupported types in the case of MySQL. While we don't want to change this now, we emit a warning to show that it's taken place. A warning is also emitted when a CAST is used with an older MySQL version (< 4) that doesn't support CAST at all, it's skipped in this case as well. fixes #3237
Diffstat (limited to 'lib/sqlalchemy/dialects/mysql/base.py')
-rw-r--r--lib/sqlalchemy/dialects/mysql/base.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/sqlalchemy/dialects/mysql/base.py b/lib/sqlalchemy/dialects/mysql/base.py
index cbb108f5e..8d62bae02 100644
--- a/lib/sqlalchemy/dialects/mysql/base.py
+++ b/lib/sqlalchemy/dialects/mysql/base.py
@@ -1710,10 +1710,17 @@ class MySQLCompiler(compiler.SQLCompiler):
def visit_cast(self, cast, **kwargs):
# No cast until 4, no decimals until 5.
if not self.dialect._supports_cast:
+ util.warn(
+ "Current MySQL version does not support "
+ "CAST; the CAST will be skipped.")
return self.process(cast.clause.self_group())
type_ = self.process(cast.typeclause)
if type_ is None:
+ util.warn(
+ "Datatype %s does not support CAST on MySQL; "
+ "the CAST will be skipped." %
+ self.dialect.type_compiler.process(cast.typeclause.type))
return self.process(cast.clause.self_group())
return 'CAST(%s AS %s)' % (self.process(cast.clause), type_)