]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- Added 'CALL' to the list of SQL keywords which return
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 27 May 2008 20:20:14 +0000 (20:20 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 27 May 2008 20:20:14 +0000 (20:20 +0000)
result rows.

CHANGES
lib/sqlalchemy/databases/mysql.py

diff --git a/CHANGES b/CHANGES
index 6b7e0c61accbd90bf1c8f71ad025d6ec695037c5..3fa0e047ac5e1e76158ba88701d6e41537e86413 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,18 +1,21 @@
 =======
 CHANGES
 =======
-
 0.4.7
 =====
+- mysql
+    - Added 'CALL' to the list of SQL keywords which return
+      result rows.
+
 - oracle
     - Oracle get_default_schema_name() "normalizes" the name
       before returning, meaning it returns a lower-case name
       when the identifier is detected as case insensitive.
 
-    - creating/dropping tables takes schema name into account
+    - Creating/dropping tables takes schema name into account
       when searching for the existing table, so that tables
       in other owner namespaces with the same name do not
-      conflict [ticket:709]
+      conflict. [ticket:709]
 
 
 0.4.6
index a86035be50754d0c0feda4c9a0c687fd9b03b895..d91d9f08f886dddeaabef41f3e59be288dfe74db 100644 (file)
@@ -221,7 +221,7 @@ AUTOCOMMIT_RE = re.compile(
     r'\s*(?:UPDATE|INSERT|CREATE|DELETE|DROP|ALTER|LOAD +DATA|REPLACE)',
     re.I | re.UNICODE)
 SELECT_RE = re.compile(
-    r'\s*(?:SELECT|SHOW|DESCRIBE|XA RECOVER)',
+    r'\s*(?:SELECT|SHOW|DESCRIBE|XA RECOVER|CALL)',
     re.I | re.UNICODE)
 SET_RE = re.compile(
     r'\s*SET\s+(?:(?:GLOBAL|SESSION)\s+)?\w',