mirror of
https://github.com/dimitri/pgloader.git
synced 2026-05-04 10:31:02 +02:00
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:
parent
b026a860c1
commit
62edd5a2c8
@ -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)"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user