Weird code in pgDomain.cpp - Mailing list pgadmin-hackers

From Guillaume Lelarge
Subject Weird code in pgDomain.cpp
Date
Msg-id 1333874668.2325.8.camel@localhost.localdomain
Whole thread Raw
Responses Re: Weird code in pgDomain.cpp
List pgadmin-hackers
Hi,

I was trying to fix a bug on dlgDomain, and I found this code (in
pgadmin/schema/pgDomain.cpp):

wxString conname = set->GetVal(wxT("conname"));
if (!conname.StartsWith(wxT("$")))
    check += wxT("CONSTRAINT ") + qtIdent(conname) + wxT(" ");

I'm wondering why we look for a dollar sign in the first character of a
check constraint in a domain. It means nothing to me. Could it be some
GreenPlum or EnterpriseDB specific code? or is it something else?

I'm also wondering if we could drop this code. Doesn't seem to do much,
and doesn't help us with modifying a check constraint in a domain.

Thanks.


--
Guillaume
http://blog.guillaume.lelarge.info
http://www.dalibo.com


pgadmin-hackers by date:

Previous
From: Guillaume Lelarge
Date:
Subject: pgAdmin III commit: Move references table textbox to the third tab of d
Next
From: Dave Page
Date:
Subject: Re: Weird code in pgDomain.cpp