mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Table editor fails to detect the default collation on some tables. Fetch it from SHOW TABLE STATUS instead as fallback. See http://www.heidisql.com/forum.php?t=6202
This commit is contained in:
@ -2428,6 +2428,8 @@ begin
|
||||
if Source is TDBObject then begin
|
||||
s := Source as TDBObject;
|
||||
Name := s.Name;
|
||||
Collation := s.Collation;
|
||||
Engine := s.Engine;
|
||||
Database := s.Database;
|
||||
NodeType := s.NodeType;
|
||||
Created := s.Created;
|
||||
|
Reference in New Issue
Block a user