Re: [HACKERS] pg_monitor role

2017-02-21 Thread Thomas Reiss
Le 20/02/2017 à 12:48, Dave Page a écrit : > Further to the patch I just submitted > (https://www.postgresql.org/message-id/CA%2BOCxow-X%3DD2fWdKy%2BHP%2BvQ1LtrgbsYQ%3DCshzZBqyFT5jOYrFw%40mail.gmail.com) > I'd like to propose the addition of a default role, pg_monitor. > > The intent is to make it

Re: [HACKERS] RFC: replace pg_stat_activity.waiting with something more descriptive

2016-03-15 Thread Thomas Reiss
Hello, Here's a small docpatch to fix two typos in the new documentation. Regards, Thomas Le 11/03/2016 07:19, Amit Kapila a écrit : On Fri, Mar 11, 2016 at 12:28 AM, Robert Haas > wrote: > > > Committed with some further editing. In particular, the way you > de

Re: [HACKERS] Casting issues with domains

2014-12-11 Thread Thomas Reiss
Le 11/12/2014 00:46, Tom Lane a écrit : > Kevin Grittner writes: >> Tom Lane wrote: >>> As far as that goes, I think the OP was unhappy about the performance >>> of the information_schema views, which in our implementation do exactly >>> that so that the exposed types of the view columns conform

Re: [HACKERS] Casting issues with domains

2014-12-09 Thread Thomas Reiss
Le 08/12/2014 16:18, Tom Lane a écrit : > Thomas Reiss writes: >> postgres=# explain select * from test2 where a='toto'; >> QUERY PLAN >> -- >> Seq Scan on test1 (cost=0.00..1

[HACKERS] Casting issues with domains

2014-12-08 Thread Thomas Reiss
Hello all, We experienced some casting issues with domains. We experienced the problem while querying the information_schema btw, but here is a simpler test case : postgres=# create table test1 (a text); CREATE TABLE postgres=# insert into test1 select generate_series(1,10); INSERT 0 10

Re: [HACKERS] Small doc patch for pg_replication_slots

2014-05-01 Thread Thomas Reiss
Le 01/05/2014 04:56, Robert Haas a écrit : > On Tue, Apr 29, 2014 at 5:39 AM, Thomas Reiss wrote: >> You can find attached a small patch to fix the pg_replication_slots >> documentation. The slot_type and plugin are not in the appropriate >> order, slot_name and plugin have

[HACKERS] Small doc patch for pg_replication_slots

2014-04-29 Thread Thomas Reiss
Hello, You can find attached a small patch to fix the pg_replication_slots documentation. The slot_type and plugin are not in the appropriate order, slot_name and plugin have a wrong type and xmin appears two times. Regards -- Thomas Reiss diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml