]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix: missing headers
authorKevin Kirsche <kevin.kirsche@one.verizon.com>
Tue, 19 Oct 2021 11:54:50 +0000 (07:54 -0400)
committerKevin Kirsche <kevin.kirsche@one.verizon.com>
Tue, 19 Oct 2021 11:54:50 +0000 (07:54 -0400)
lib/sqlalchemy/dialects/mysql/reserved_words.py

index 4469f1082d803d840be2fd01db8ca97f9fdaadf2..8e880ade9105f140d6eebcc2cece042020fc0775 100644 (file)
@@ -1,3 +1,6 @@
+# https://mariadb.com/kb/en/reserved-words/
+# includes: Reserved Words
+# excludes: Exceptions, Oracle Mode, Function Names
 RESERVED_WORDS_MARIADB = set(
     [
         "accessible",
@@ -252,6 +255,12 @@ RESERVED_WORDS_MARIADB = set(
     ]
 )
 
+# https://dev.mysql.com/doc/refman/8.0/en/keywords.html
+# https://dev.mysql.com/doc/refman/5.7/en/keywords.html
+# https://dev.mysql.com/doc/refman/5.6/en/keywords.html
+# includes: MySQL x.0 Keywords and Reserved Words
+# excludes: MySQL x.0 New Keywords and Reserved Words,
+#       MySQL x.0 Removed Keywords and Reserved Words
 RESERVED_WORDS_MYSQL = set(
     [
         "accessible",