Re: A new feature patch and a bug fix - Mailing list pgadmin-hackers

From Dave Page
Subject Re: A new feature patch and a bug fix
Date
Msg-id 4766A988.60409@postgresql.org
Whole thread Raw
In response to Re: A new feature patch and a bug fix  (Guillaume Lelarge <guillaume@lelarge.info>)
List pgadmin-hackers
Guillaume Lelarge wrote:
> Dave Page wrote:
>> Index: pgadmin/dlg/dlgProperty.cpp
>> ===================================================================
>> --- pgadmin/dlg/dlgProperty.cpp    (révision 6910)
>> +++ pgadmin/dlg/dlgProperty.cpp    (copie de travail)
>> @@ -432,7 +432,14 @@
>>
>>  void dlgProperty::AddUsers(ctlComboBoxFix *cb1, ctlComboBoxFix *cb2)
>>  {
>> -    FillCombobox(wxT("SELECT usename FROM pg_user ORDER BY usename"),
>> cb1, cb2);
>> +    if (connection->BackendMinimumVersion(8, 1))
>> +    {
>> +        FillCombobox(wxT("SELECT rolname FROM pg_roles ORDER BY 1"),
>> cb1, cb2);
>> +    }
>> +    else
>> +    {
>> +        FillCombobox(wxT("SELECT usename FROM pg_user ORDER BY 1"),
>> cb1, cb2);
>> +    }
>>  }
>>
>
> I'm OK with this.

Please go ahead and commit at your leisure :-)

/D

pgadmin-hackers by date:

Previous
From: Guillaume Lelarge
Date:
Subject: Re: A new feature patch and a bug fix
Next
From: svn@pgadmin.org
Date:
Subject: SVN Commit by guillaume: r6911 - trunk/pgadmin3/pgadmin/dlg