Re: Re: [COMMITTERS] pgsql: Add connection messages for streaming replication.

From: Craig Ringer <craig(at)postnewspapers(dot)com(dot)au>
To: Simon Riggs <simon(at)2ndQuadrant(dot)com>
Cc: Fujii Masao <masao(dot)fujii(at)gmail(dot)com>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Re: [COMMITTERS] pgsql: Add connection messages for streaming replication.
Date: 2010-03-24 12:53:42
Message-ID: 4BAA0B56.4000508@postnewspapers.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-hackers

On 24/03/2010 6:29 PM, Simon Riggs wrote:

> So we are allowing a database to be called "REPLICATION"? Surely there
> are some significant problems in that case. How will access control to
> that database work in the pg_hba.conf?

Surely it should be consistent with "template0" and "postgres":

template1=# create database postgres;
ERROR: database "postgres" already exists
template1=# create database "postgres";
ERROR: database "postgres" already exists
template1=# create database "POSTGRES";
CREATE DATABASE
template1=# create database template0;
ERROR: database "template0" already exists
template1=# create database "template0";
ERROR: database "template0" already exists
template1=# create database "TEMPLATE0";
CREATE DATABASE

--
Craig Ringer

In response to

Browse pgsql-committers by date

  From Date Subject
Next Message Andrew Dunstan 2010-03-24 13:14:02 pgsql: Mark "installcheck-parallel", "world", "install-world" and
Previous Message Fujii Masao 2010-03-24 12:34:57 Re: Re: [COMMITTERS] pgsql: Add connection messages for streaming replication.

Browse pgsql-hackers by date

  From Date Subject
Next Message Andrew Dunstan 2010-03-24 13:14:39 Re: PHONY targets in Makefile.global.in
Previous Message Fujii Masao 2010-03-24 12:34:57 Re: Re: [COMMITTERS] pgsql: Add connection messages for streaming replication.