Re: [DOCS] Missing parenthesis in backup.sgml

2016-07-08 Thread Magnus Hagander
On Friday, July 8, 2016, Alexander Law wrote: > Hello, > > Closing parenthesis missing in backup.sgml. Patch attached. > > Thanks, applied! -- Magnus Hagander Me: http://www.hagander.net/ Work: http://www.redpill-linpro.com/

[DOCS] A typo in install-windows.sgml

2016-07-08 Thread Alexander Law
Hello, There is a typo in install-windows,sgml. Patch attached. Best regards, Alexander diff --git a/doc/src/sgml/install-windows.sgml b/doc/src/sgml/install-windows.sgml index 4e92cc9..8cd189c 100644 --- a/doc/src/sgml/install-windows.sgml +++ b/doc/src/sgml/install-windows.sgml @@ -84,7 +84,7

Re: [DOCS] A typo in install-windows.sgml

2016-07-08 Thread Stephen Frost
Alexander, * Alexander Law (exclus...@gmail.com) wrote: > There is a typo in install-windows,sgml. Patch attached. Fix pushed. Thanks! Stephen signature.asc Description: Digital signature

[DOCS] Invalid statement in ref/insert.sgml

2016-07-08 Thread Alexander Law
Hello, It seems, that the statement "INSERT ... ON CONFLICT DO UPDATE tab SET table_name.col = 1" is invalid in two ways. Patch attached. Maybe it's worth to replace "UPDATE tab SET tab.col = 1" with "UPDATE table_name SET table_name.col = 1" in ref/update.sgml (for consistency) too. Best reg

Re: [DOCS] Invalid statement in ref/insert.sgml

2016-07-08 Thread Tom Lane
Alexander Law writes: > It seems, that the statement "INSERT ... ON CONFLICT DO UPDATE tab SET > table_name.col = 1" is invalid in two ways. Patch attached. > Maybe it's worth to replace "UPDATE tab SET tab.col = 1" with "UPDATE > table_name SET table_name.col = 1" in ref/update.sgml (for consis

[DOCS] A mess with the BRIN's inclusion strategies

2016-07-08 Thread Alexander Law
Hello, As I can see from stratnum.h and brin_inclusion.c, two operator strategies for BRIN inclusion opclass are messed in docs. Patch attached. Best regards, Alexander diff --git a/doc/src/sgml/brin.sgml b/doc/src/sgml/brin.sgml index 245ec5d..31384b4 100644 --- a/doc/src/sgml/brin.sgml +++ b