Skip site navigation (1) Skip section navigation (2)

Peripheral Links

Header And Logo

PostgreSQL
| The world's most advanced open source database.

Site Navigation

Search for
  Advanced Search

Re: A new feature patch and a bug fix


  • From: Dave Page <dpage(at)postgresql(dot)org>
  • To: Guillaume Lelarge <guillaume(at)lelarge(dot)info>
  • Cc: pgadmin-hackers(at)postgresql(dot)org
  • Subject: Re: A new feature patch and a bug fix
  • Date: Mon, 17 Dec 2007 16:53:28 +0000
  • Message-id: <4766A988(dot)60409(at)postgresql(dot)org>

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



Home | Main Index | Thread Index

Privacy Policy | PostgreSQL Archives hosted by Command Prompt, Inc. | Designed by tinysofa
Copyright © 1996 – 2008 PostgreSQL Global Development Group