Обсуждение: Be careful in postgresql.conf of 8.1.

Поиск
Список
Период
Сортировка

Be careful in postgresql.conf of 8.1.

От
"Hiroshi Saito"
Дата:
Hi Andreas.

Although this is a comment, it is bad condition.

postgresql.conf

#data_directory = 'ConfigDir'           # use data in another directory
#hba_file = 'ConfigDir/pg_hba.conf'     # host-based authentication file
#ident_file = 'ConfigDir/pg_ident.conf  # IDENT configuration file

Ummm, This should be as follows.

#ident_file = 'ConfigDir/pg_ident.conf'  # IDENT configuration file

It is conf-editor gets confused. What do you consider?

Regards,
Hiroshi Saito



Re: Be careful in postgresql.conf of 8.1.

От
Andreas Pflug
Дата:
Hiroshi Saito wrote:
> Hi Andreas.
>
> Although this is a comment, it is bad condition.
>
> postgresql.conf
>
> #data_directory = 'ConfigDir'           # use data in another directory
> #hba_file = 'ConfigDir/pg_hba.conf'     # host-based authentication file
> #ident_file = 'ConfigDir/pg_ident.conf  # IDENT configuration file
>
> Ummm, This should be as follows.
>
> #ident_file = 'ConfigDir/pg_ident.conf'  # IDENT configuration file
>
> It is conf-editor gets confused. What do you consider?

pgsql needs fix.

Regards,
Andreas

Possible bug renaming roles

От
Antonio
Дата:
Dear Sirs:

I looked in the pgAdmin web page for a place to report bugs, but I
couldn't find it. So I send it to this list. If I'm wrong, please let me
know.


Bug description:
- When you try to rename a role, you get an error. The underlying sql
sentence seems to be wrong. PgAdmin is trying
    ALTER GROUP ROLE "AccTotBDProy" RENAME TO "BDProy_AccTot";
and then the user gets the error


Expected results:
- It seems pgAdmin should try
    ALTER ROLE "AccTotBDProy" RENAME TO "BDProy_AccTot";
and rename it


I'm available to do whatever tryings are needed.

Keep up the good work. Thanks for it all!




Re: Be careful in postgresql.conf of 8.1.

От
"Hiroshi Saito"
Дата:
> > #ident_file = 'ConfigDir/pg_ident.conf'  # IDENT configuration file
> >
> > It is conf-editor gets confused. What do you consider?
>
> pgsql needs fix.

Ok, I will post.

Regards,
Hiroshi Saito


Re: Possible bug renaming roles

От
Andreas Pflug
Дата:
Antonio wrote:
> Dear Sirs:
>
> I looked in the pgAdmin web page for a place to report bugs, but I
> couldn't find it. So I send it to this list. If I'm wrong, please let me
> know.
>
>
> Bug description:
> - When you try to rename a role, you get an error.

Fixed in svn for 1.4.1 and HEAD, thanks for reporting.

Regards,
Andreas