Re: [HACKERS] Missing newlines in verbose logs of pg_dump, introduced by RLS patch

2014-10-03 Thread Stephen Frost
* Stephen Frost (sfr...@snowman.net) wrote:
> * Michael Paquier (michael.paqu...@gmail.com) wrote:
> > On Mon, Sep 29, 2014 at 10:07 AM, Fabrízio de Royes Mello <
> > fabriziome...@gmail.com> wrote:
> > 
> > > The schema name is missing... attached patch add it.
> > >
> > Ah, right, thanks. It didn't occur to me immediately :) Your patch looks
> > good to me, and you are updating as well the second message that missed the
> > schema name in getRowSecurity.
> 
> Thanks to you both- will review.

Fix pushed- thanks!

Stephen


signature.asc
Description: Digital signature


Re: [HACKERS] Missing newlines in verbose logs of pg_dump, introduced by RLS patch

2014-09-29 Thread Stephen Frost
* Michael Paquier (michael.paqu...@gmail.com) wrote:
> On Mon, Sep 29, 2014 at 10:07 AM, Fabrízio de Royes Mello <
> fabriziome...@gmail.com> wrote:
> 
> > The schema name is missing... attached patch add it.
> >
> Ah, right, thanks. It didn't occur to me immediately :) Your patch looks
> good to me, and you are updating as well the second message that missed the
> schema name in getRowSecurity.

Thanks to you both- will review.

Thanks again,

Stephen


signature.asc
Description: Digital signature


Re: [HACKERS] Missing newlines in verbose logs of pg_dump, introduced by RLS patch

2014-09-28 Thread Michael Paquier
On Mon, Sep 29, 2014 at 10:07 AM, Fabrízio de Royes Mello <
fabriziome...@gmail.com> wrote:

> The schema name is missing... attached patch add it.
>
Ah, right, thanks. It didn't occur to me immediately :) Your patch looks
good to me, and you are updating as well the second message that missed the
schema name in getRowSecurity.
Regards,
-- 
Michael


Re: [HACKERS] Missing newlines in verbose logs of pg_dump, introduced by RLS patch

2014-09-28 Thread Fabrízio de Royes Mello
On Sun, Sep 28, 2014 at 1:36 AM, Michael Paquier 
wrote:
>
> Hi all,
>
> Recent commit 491c029 introducing RLS has broken a bit the verbose logs
of pg_dump, one message missing a newline:
> +   if (g_verbose)
> +   write_msg(NULL, "reading row-security enabled for
table \"%s\"",
> + tbinfo->dobj.name);
> The patch attached corrects that.
>

The schema name is missing... attached patch add it.

Regards,

--
Fabrízio de Royes Mello
Consultoria/Coaching PostgreSQL
>> Timbira: http://www.timbira.com.br
>> Blog: http://fabriziomello.github.io
>> Linkedin: http://br.linkedin.com/in/fabriziomello
>> Twitter: http://twitter.com/fabriziomello
>> Github: http://github.com/fabriziomello
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c
index 12811a8..ab169c9 100644
--- a/src/bin/pg_dump/pg_dump.c
+++ b/src/bin/pg_dump/pg_dump.c
@@ -2803,8 +2803,8 @@ getRowSecurity(Archive *fout, TableInfo tblinfo[], int numTables)
 			continue;
 
 		if (g_verbose)
-			write_msg(NULL, "reading row-security enabled for table \"%s\"",
-	  tbinfo->dobj.name);
+			write_msg(NULL, "reading row-security enabled for table \"%s\".\"%s\"\n",
+	  tbinfo->dobj.namespace->dobj.name, tbinfo->dobj.name);
 
 		/*
 		 * Get row-security enabled information for the table.
@@ -2833,8 +2833,8 @@ getRowSecurity(Archive *fout, TableInfo tblinfo[], int numTables)
 		}
 
 		if (g_verbose)
-			write_msg(NULL, "reading row-security policies for table \"%s\"\n",
-	  tbinfo->dobj.name);
+			write_msg(NULL, "reading row-security policies for table \"%s\".\"%s\"\n",
+	  tbinfo->dobj.namespace->dobj.name, tbinfo->dobj.name);
 
 		/*
 		 * select table schema to ensure regproc name is qualified if needed

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


[HACKERS] Missing newlines in verbose logs of pg_dump, introduced by RLS patch

2014-09-27 Thread Michael Paquier
Hi all,

Recent commit 491c029 introducing RLS has broken a bit the verbose logs of
pg_dump, one message missing a newline:
+   if (g_verbose)
+   write_msg(NULL, "reading row-security enabled for
table \"%s\"",
+ tbinfo->dobj.name);
The patch attached corrects that.
Regards,
-- 
Michael


20140928_rls_pgdump_fix.patch
Description: Binary data

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers