]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Added the missing keywords from MySQL 4.1 so they get escaped properly.
authorAnts Aasma <ants.aasma@gmail.com>
Thu, 8 Jan 2009 15:16:32 +0000 (15:16 +0000)
committerAnts Aasma <ants.aasma@gmail.com>
Thu, 8 Jan 2009 15:16:32 +0000 (15:16 +0000)
CHANGES
lib/sqlalchemy/databases/mysql.py

diff --git a/CHANGES b/CHANGES
index 8cdc95011fb9c7917df38b37392ab89b06baf04c..bd9b9f36cc3b73f78edc62ef7c1da7c4fc836f57 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -4,6 +4,10 @@
 CHANGES
 =======
 
+- mysql
+    - Added the missing keywords from MySQL 4.1 so they get escaped
+      properly.
+
 0.5.0
 ========
 
index 045225c93e73d7f9449c88ff0177524111d45fc7..86b89337ffca791f5be44e09217493bea73f744c 100644 (file)
@@ -255,7 +255,7 @@ RESERVED_WORDS = set(
      'using', 'utc_date', 'utc_time', 'utc_timestamp', 'values', 'varbinary',
      'varchar', 'varcharacter', 'varying', 'when', 'where', 'while', 'with',
      'write', 'x509', 'xor', 'year_month', 'zerofill', # 5.0
-     'fields', # 4.1
+     'columns', 'fields', 'privileges', 'soname', 'tables', # 4.1
      'accessible', 'linear', 'master_ssl_verify_server_cert', 'range',
      'read_only', 'read_write', # 5.1
      ])