mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-27 08:19:45 +01:00
fixed mapping of I4 to INTEGER now, it was mediumint which is a 3-byte interger only
This commit is contained in:
parent
c69e9cd32e
commit
7b6b6d5759
@ -95,7 +95,7 @@ class ADODB2_mysql extends ADODB_DataDict {
|
||||
case 'I': return 'INTEGER';
|
||||
case 'I1': return 'TINYINT';
|
||||
case 'I2': return 'SMALLINT';
|
||||
case 'I4': return 'MEDIUMINT';
|
||||
case 'I4': return 'INTEGER'; // MEDIUMINT is actualy a I3
|
||||
case 'I8': return 'BIGINT';
|
||||
|
||||
case 'F': return 'DOUBLE';
|
||||
|
Loading…
Reference in New Issue
Block a user