Client Messages - Mailing list pgsql-hackers

From Jim Mlodgenski
Subject Client Messages
Date
Msg-id CAB_5SRdN1_rx0vkoZ8tC9PmcXCiy0QFEs_=vscg-UrFHeJdB=w@mail.gmail.com
Whole thread Raw
Responses Re: Client Messages  ("Kevin Grittner" <Kevin.Grittner@wicourts.gov>)
Re: Client Messages  (Fujii Masao <masao.fujii@gmail.com>)
List pgsql-hackers
I have a need to send banner messages to a psql client that I can set
on the server and will be displayed on any psql client that connects
to the database. This would be mostly used as an additional indicator
to which database you are connecting, but could also be used by people
to force their users to see an security message when connecting to the
database. The attached patch will allow you to execute

ALTER DATABASE postgres SET
client_message=E'********************************************************************************\nBEWARE:
You are connecting to a production database. If you do anything to\n
     bring this server down, you will be destroyed by your supreme
overlord.\n********************************************************************************\n';

And then when you connect to psql, you will see:

[e3@workstation bin]$ ./psql -U user1 postgres
psql (9.2devel)
********************************************************************************
BEWARE: You are connecting to a production database. If you do anything to
        bring this server down, you will be destroyed by your supreme overlord.
********************************************************************************

Type "help" for help.

postgres=>


Any feedback is welcome.

Thanks

Attachment

pgsql-hackers by date:

Previous
From: "Kevin Grittner"
Date:
Subject: Re: CLOG contention
Next
From: "Kevin Grittner"
Date:
Subject: Re: Client Messages