- [bug] sql.false() and sql.true() compile to
0 and 1, respectively in sqlite [ticket:2368]
+ - [bug] removed an erroneous "raise" in the
+ SQLite dialect when getting table names
+ and view names, where logic is in place
+ to fall back to an older version of
+ SQLite that doesn't have the
+ "sqlite_temp_master" table.
+
- mysql
- [bug] fixed regexp that filters out warnings
for non-reflected "PARTITION" directives,
"WHERE type='table' ORDER BY name")
rs = connection.execute(s)
except exc.DBAPIError:
- raise
s = ("SELECT name FROM sqlite_master "
"WHERE type='table' ORDER BY name")
rs = connection.execute(s)
"WHERE type='view' ORDER BY name")
rs = connection.execute(s)
except exc.DBAPIError:
- raise
s = ("SELECT name FROM sqlite_master "
"WHERE type='view' ORDER BY name")
rs = connection.execute(s)
"AND type='view'") % view_name
rs = connection.execute(s)
except exc.DBAPIError:
- raise
s = ("SELECT sql FROM sqlite_master WHERE name = '%s' "
"AND type='view'") % view_name
rs = connection.execute(s)