summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2017-06-16 13:30:25 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2017-06-16 15:52:46 -0400
commit5650a0c306391216a9c9ce1961c5b548e534b5eb (patch)
tree23e15c4971f08e8342bbea6784ce2bbd62168c91 /lib/sqlalchemy/dialects
parent3a314fcea8539133947d5ec8e42a6c86e30fdf9a (diff)
downloadsqlalchemy-5650a0c306391216a9c9ce1961c5b548e534b5eb.tar.gz
Handle SHOW VARIABLES returning no row
MySQL 5.7 has introduced permission limiting for the "SHOW VARIABLES" command; the MySQL dialect will now handle when SHOW returns no row, in particular for the initial fetch of SQL_MODE, and will emit a warning that user permissions should be modified to allow the row to be present. Change-Id: I98e7a69230da397b17eae07b7e9d024fa7aeeb26 Fixes: #4007
Diffstat (limited to 'lib/sqlalchemy/dialects')
-rw-r--r--lib/sqlalchemy/dialects/mysql/base.py38
1 files changed, 27 insertions, 11 deletions
diff --git a/lib/sqlalchemy/dialects/mysql/base.py b/lib/sqlalchemy/dialects/mysql/base.py
index 277ae5815..c19253478 100644
--- a/lib/sqlalchemy/dialects/mysql/base.py
+++ b/lib/sqlalchemy/dialects/mysql/base.py
@@ -1673,13 +1673,21 @@ class MySQLDialect(default.DefaultDialect):
"""Proxy a result row to smooth over MySQL-Python driver
inconsistencies."""
- return _DecodingRowProxy(rp.fetchone(), charset)
+ row = rp.fetchone()
+ if row:
+ return _DecodingRowProxy(row, charset)
+ else:
+ return None
def _compat_first(self, rp, charset=None):
"""Proxy a result row to smooth over MySQL-Python driver
inconsistencies."""
- return _DecodingRowProxy(rp.first(), charset)
+ row = rp.first()
+ if row:
+ return _DecodingRowProxy(row, charset)
+ else:
+ return None
def _extract_error_code(self, exception):
raise NotImplementedError()
@@ -1720,6 +1728,7 @@ class MySQLDialect(default.DefaultDialect):
def initialize(self, connection):
self._connection_charset = self._detect_charset(connection)
+ self._detect_sql_mode(connection)
self._detect_ansiquotes(connection)
if self._server_ansiquotes:
# if ansiquotes == True, build a new IdentifierPreparer
@@ -1993,21 +2002,28 @@ class MySQLDialect(default.DefaultDialect):
collations[row[0]] = row[1]
return collations
- def _detect_ansiquotes(self, connection):
- """Detect and adjust for the ANSI_QUOTES sql mode."""
-
+ def _detect_sql_mode(self, connection):
row = self._compat_first(
connection.execute("SHOW VARIABLES LIKE 'sql_mode'"),
charset=self._connection_charset)
if not row:
- mode = ''
+ util.warn(
+ "Could not retrieve SQL_MODE; please ensure the "
+ "MySQL user has permissions to SHOW VARIABLES")
+ self._sql_mode = ''
else:
- mode = row[1] or ''
- # 4.0
- if mode.isdigit():
- mode_no = int(mode)
- mode = (mode_no | 4 == mode_no) and 'ANSI_QUOTES' or ''
+ self._sql_mode = row[1] or ''
+
+ def _detect_ansiquotes(self, connection):
+ """Detect and adjust for the ANSI_QUOTES sql mode."""
+
+ mode = self._sql_mode
+ if not mode:
+ mode = ''
+ elif mode.isdigit():
+ mode_no = int(mode)
+ mode = (mode_no | 4 == mode_no) and 'ANSI_QUOTES' or ''
self._server_ansiquotes = 'ANSI_QUOTES' in mode