mirror of
https://github.com/dimitri/pgloader.git
synced 2025-08-09 15:56:58 +02:00
Attempt at fixing #59 (sqlite double type casting).
Blindly add a new type conversion in the SQLite code base to handle the source type DOUBLE and convert it to "double precision".
This commit is contained in:
parent
d7b05ba411
commit
efda3eebfa
@ -135,6 +135,9 @@
|
||||
((string-equal "text" coltype)
|
||||
nil)
|
||||
|
||||
((string-equal "double" coltype)
|
||||
"double precision")
|
||||
|
||||
(t
|
||||
(compile nil (lambda (c)
|
||||
(when c
|
||||
|
Loading…
Reference in New Issue
Block a user