]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Added indexed to the list of reserved keywords (added in 3.6.4). Fixes #1358.
authorMichael Trier <mtrier@gmail.com>
Sat, 4 Apr 2009 02:54:09 +0000 (02:54 +0000)
committerMichael Trier <mtrier@gmail.com>
Sat, 4 Apr 2009 02:54:09 +0000 (02:54 +0000)
lib/sqlalchemy/databases/sqlite.py

index b77a315b80ebee81ffa443a20d66cfe2760dba25..e2156be97f14ee1439b259cda3deb034a35c04c2 100644 (file)
@@ -632,7 +632,7 @@ class SQLiteIdentifierPreparer(compiler.IdentifierPreparer):
         'reindex', 'rename', 'replace', 'restrict', 'right', 'rollback',
         'row', 'select', 'set', 'table', 'temp', 'temporary', 'then', 'to',
         'transaction', 'trigger', 'true', 'union', 'unique', 'update', 'using',
-        'vacuum', 'values', 'view', 'virtual', 'when', 'where',
+        'vacuum', 'values', 'view', 'virtual', 'when', 'where', 'indexed',
         ])
 
     def __init__(self, dialect):