Fix MS SQL decimal conversion.

Register decimal data type in MS SQL to use the float-to-string
transformation function.
This commit is contained in:
Dimitri Fontaine 2014-12-19 15:05:01 +01:00
parent 03b77fd1ad
commit 1a083af950

View File

@ -36,6 +36,9 @@
(:source (:type "numeric") :target (:type "numeric")
:using pgloader.transforms::float-to-string)
(:source (:type "decimal") :target (:type "numeric")
:using pgloader.transforms::float-to-string)
(:source (:type "money") :target (:type "numeric")
:using pgloader.transforms::float-to-string)