Fix documentation of default MySQL cast rules (#815)

The default rule is `type int to bigint    when  (>= 10 precision)`.
This commit is contained in:
alexknips 2018-07-20 14:38:06 +02:00 committed by Dimitri Fontaine
parent 46d14af0d3
commit 5ca3ee8aad

View File

@ -556,7 +556,7 @@ Numbers::
type int with extra auto_increment to serial when (< precision 10) type int with extra auto_increment to serial when (< precision 10)
type int with extra auto_increment to bigserial when (<= 10 precision) type int with extra auto_increment to bigserial when (<= 10 precision)
type int to int when (< precision 10) type int to int when (< precision 10)
type int to bigint when (<= 10 precision) type int to bigint when (>= 10 precision)
type tinyint with extra auto_increment to serial type tinyint with extra auto_increment to serial
type smallint with extra auto_increment to serial type smallint with extra auto_increment to serial
type mediumint with extra auto_increment to serial type mediumint with extra auto_increment to serial