Skip to content

Commit 3889fe9

Browse files
committed
Rearrange values in numeric order.
1 parent ccf3f4c commit 3889fe9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/MySqlConnector/MySqlClient/MySqlDbType.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ public enum MySqlDbType
77
Decimal,
88
Byte,
99
Int16,
10-
Int24 = 9,
11-
Int32 = 3,
12-
Int64 = 8,
13-
Float = 4,
10+
Int32,
11+
Float,
1412
Double,
1513
Timestamp = 7,
16-
Date = 10,
14+
Int64,
15+
Int24,
16+
Date,
1717
Time,
1818
DateTime,
1919
[Obsolete("The Datetime enum value is obsolete. Please use DateTime.")]
@@ -35,9 +35,9 @@ public enum MySqlDbType
3535
Geometry,
3636
UByte = 501,
3737
UInt16,
38-
UInt24 = 509,
39-
UInt32 = 503,
38+
UInt32,
4039
UInt64 = 508,
40+
UInt24,
4141
Binary = 600,
4242
VarBinary,
4343
TinyText = 749,

0 commit comments

Comments
 (0)