Fix MS SQL convertion of money to numeric.

This commit is contained in:
Dimitri Fontaine 2014-11-16 21:54:13 +01:00
parent 87e2e16582
commit c94164c05c

View File

@ -22,9 +22,6 @@
(:source (:type "geography") :target (:type "bytea")
:using pgloader.transforms::byte-vector-to-bytea)
(:source (:type "money") :target (:type "numeric"))
(:source (:type "smallmoney") :target (:type "numeric"))
(:source (:type "tinyint") :target (:type "smallint"))
(:source (:type "float") :target (:type "float")
@ -39,6 +36,12 @@
(:source (:type "numeric") :target (:type "numeric")
:using pgloader.transforms::float-to-string)
(:source (:type "money") :target (:type "numeric")
:using pgloader.transforms::float-to-string)
(:source (:type "smallmoney") :target (:type "numeric")
:using pgloader.transforms::float-to-string)
(:source (:type "binary") :target (:type "bytea")
:using pgloader.transforms::byte-vector-to-bytea)