Register "nocase" as a SQLite noise word.

SQLite types include "text nocase" apparently, so add "nocase" as one of
the managed noise words. It might be time we handle those the other way
round, with a whitelist of expected tokens somewhere in the type
definition rather than a blacklist of unknown words to exclude...

Anyway, fix #350.
This commit is contained in:
Dimitri Fontaine 2016-03-03 00:21:43 +01:00
parent b026a860c1
commit 62edd5a2c8

View File

@ -59,6 +59,7 @@
(tokens (remove-if (lambda (token)
(or (member token '("unsigned" "short"
"varying" "native"
"nocase"
"auto_increment")
:test #'string-equal)
;; remove typemod too, as in "integer (8)"