mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Add support for MariaDB's new UUID column type. Closes #1545
This commit is contained in:
@ -370,7 +370,7 @@ var
|
||||
|
||||
|
||||
// MySQL Data Type List and Properties
|
||||
MySQLDatatypes: array [0..37] of TDBDatatype =
|
||||
MySQLDatatypes: array [0..38] of TDBDatatype =
|
||||
(
|
||||
(
|
||||
Index: dbdtUnknown;
|
||||
@ -734,6 +734,21 @@ var
|
||||
LoadPart: False;
|
||||
Category: dtcText;
|
||||
),
|
||||
(
|
||||
Index: dbdtUniqueidentifier;
|
||||
NativeType: 254;
|
||||
Name: 'UUID';
|
||||
Description: 'UUID' + sLineBreak +
|
||||
'The UUID data type is intended for the storage of 128-bit UUID (Universally ' +
|
||||
'Unique Identifier) data. See the UUID function page for more details on UUIDs ' +
|
||||
'themselves.';
|
||||
HasLength: False;
|
||||
RequiresLength: False;
|
||||
HasBinary: False;
|
||||
HasDefault: False;
|
||||
LoadPart: False;
|
||||
Category: dtcText;
|
||||
),
|
||||
(
|
||||
Index: dbdtBinary;
|
||||
NativeType: 254;
|
||||
|
Reference in New Issue
Block a user