Skip to content

Commit

Permalink
fix(mssql): int (32bit) cast to bigserial (64bit)
Browse files Browse the repository at this point in the history
Fixes: dimitri#1590

Co-Authored-By: Nathanael Ruf <[email protected]>
  • Loading branch information
gnarlex and nathanael-ruf committed Jul 6, 2024
1 parent 29afa9d commit fa8c9a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sources/mssql/mssql-cast-rules.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
(:source (:type "xml") :target (:type "xml" :drop-typemod 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)
:target (:type "bigserial"))
Expand Down

0 comments on commit fa8c9a1

Please sign in to comment.