fix(mssql): int (32bit) cast to bigserial (64bit)

Fixes: dimitri/pgloader#1590

Co-Authored-By: Nathanael Ruf <nathanael@codesphere.com>
This commit is contained in:
Alex Klein 2024-07-06 16:08:12 +02:00
parent 29afa9de05
commit fa8c9a10e6
No known key found for this signature in database
GPG Key ID: 293EB31AE6E47FB1

View File

@ -13,7 +13,7 @@
(:source (:type "xml") :target (:type "xml" :drop-typemod t)) (:source (:type "xml") :target (:type "xml" :drop-typemod t))
(:source (:type "int" :auto-increment t) (:source (:type "int" :auto-increment t)
:target (:type "bigserial" :drop-default t)) :target (:type "serial" :drop-default t))
(:source (:type "bigint" :auto-increment t) (:source (:type "bigint" :auto-increment t)
:target (:type "bigserial")) :target (:type "bigserial"))