From e10ab91d5d3e5c16759236c967d4b8e77ec7bc16 Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Sat, 19 Apr 2014 06:10:48 +0000 Subject: [PATCH] Remove schema prefix from PostgreSQL tables in tree --- source/main.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/main.pas b/source/main.pas index 61990140..3793538b 100644 --- a/source/main.pas +++ b/source/main.pas @@ -7489,7 +7489,7 @@ begin CellText := CellText + ' (' + FormatNumber(Sender.ChildCount[Node]) + ')'; end; lntTable..lntEvent: begin - if DBObj.Schema <> '' then + if (DBObj.Schema <> '') and (DBObj.Connection.Parameters.NetTypeGroup = ngMSSQL) then CellText := DBObj.Schema + '.' + DBObj.Name else CellText := DBObj.Name;