Fixed mysql TEMPORARY table reflection.

This commit is contained in:
Jason Kirtland
2008-09-27 18:26:53 +00:00
parent 8e5312975b
commit bcd7c81a46
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -38,6 +38,9 @@ CHANGES
strptime/strftime, to generically support pre-1900 dates,
dates with microseconds. [ticket:968]
- mysql
- Temporary tables are now reflectable.
0.5.0rc1
========
+1 -1
View File
@@ -2406,7 +2406,7 @@ class MySQLSchemaReflector(object):
self.preparer._escape_identifier(_final))]))
self._pr_name = _pr_compile(
r'^CREATE TABLE +'
r'^CREATE (?:\w+ +)?TABLE +'
r'%(iq)s(?P<name>(?:%(esc_fq)s|[^%(fq)s])+)%(fq)s +\($' % quotes,
self.preparer._unescape_identifier)