From 6b6005267e1042a8d8b750d2122ccd900d0ece1c Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Thu, 14 Jan 2021 07:56:56 +0100 Subject: [PATCH] Issue #75: CHECK_CONSTRAINTS is there on MSSQL, but does not work due to missing TABLE_NAME column: https://www.heidisql.com/forum.php?t=37462 --- source/dbconnection.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/dbconnection.pas b/source/dbconnection.pas index 2f7ff079..52b9eafe 100644 --- a/source/dbconnection.pas +++ b/source/dbconnection.pas @@ -2921,8 +2921,8 @@ begin end; end; // List of known IS tables - FInformationSchemaObjects.CommaText := 'CHECK_CONSTRAINTS,'+ - 'COLUMN_DOMAIN_USAGE,'+ + // CHECK_CONSTRAINTS is there but does not work due to missing TABLE_NAME column: https://www.heidisql.com/forum.php?t=37462 + FInformationSchemaObjects.CommaText := 'COLUMN_DOMAIN_USAGE,'+ 'COLUMN_PRIVILEGES,'+ 'COLUMNS,'+ 'CONSTRAINT_COLUMN_USAGE,'+