mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
Give CHAR data type a separate detection, besides VARCHAR, for SQLite. Closes #870
This commit is contained in:
@@ -2078,7 +2078,7 @@ var
|
||||
HasDefault: False;
|
||||
LoadPart: False;
|
||||
ValueMustMatch: '^\{?[a-f0-9]{8}-?[a-f0-9]{4}-?[a-f0-9]{4}-?[a-f0-9]{4}-?[a-f0-9]{12}\}?$';
|
||||
Category: dtcText;
|
||||
Category: dtcText;
|
||||
)
|
||||
);
|
||||
|
||||
@@ -2124,6 +2124,18 @@ var
|
||||
HasLength: False;
|
||||
RequiresLength: False;
|
||||
HasBinary: False;
|
||||
HasDefault: True;
|
||||
LoadPart: False;
|
||||
Category: dtcInteger;
|
||||
),
|
||||
(
|
||||
Index: dtChar;
|
||||
Name: 'CHAR';
|
||||
Names: 'CHARACTER|CHAR|NCHAR|NATIVE CHARACTER';
|
||||
HasLength: True;
|
||||
RequiresLength: True;
|
||||
HasBinary: False;
|
||||
HasDefault: True;
|
||||
LoadPart: True;
|
||||
DefLengthSet: '50';
|
||||
Category: dtcText;
|
||||
|
||||
Reference in New Issue
Block a user