On Wed, Aug 16, 2017 at 9:27 AM, Peter Eisentraut wrote:
> pg_receivewal: Improve verbose mode
>
> Some informational messages showed up even if verbose mode was not
> used. Move them to verbose mode.
Perhaps this should be back-patched? It seems to me that this is an
oversight from the beginnin
Remove dedicated B-tree root-split record types.
Since commit 40dae7ec53, which changed the way b-tree page splitting
works, there has been no difference in the handling of root, and non-root
split WAL records. We don't need to distinguish them anymore
If you're worried about the loss of debuggin
Changed ecpg parser to allow RETURNING clauses without attached C variables.
Branch
--
REL9_3_STABLE
Details
---
https://git.postgresql.org/pg/commitdiff/f8bc6b2f689dc721c753949854bfe605f33149ca
Modified Files
--
src/interfaces/ecpg/preproc/ecpg.trailer | 7 +--
src/interf
Changed ecpg parser to allow RETURNING clauses without attached C variables.
Branch
--
REL9_6_STABLE
Details
---
https://git.postgresql.org/pg/commitdiff/3d7a1e2b96b60353c63742d4a8270c67a17744f4
Modified Files
--
src/interfaces/ecpg/preproc/ecpg.trailer | 7 +--
src/interf
Allow continuation lines in ecpg cppline parsing.
Branch
--
REL_10_STABLE
Details
---
https://git.postgresql.org/pg/commitdiff/a6b174f55716c9da2e16804f2d4be4d8f76255ef
Modified Files
--
src/interfaces/ecpg/preproc/pgc.l | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
-
Changed ecpg parser to allow RETURNING clauses without attached C variables.
Branch
--
REL9_4_STABLE
Details
---
https://git.postgresql.org/pg/commitdiff/bd502753af5d4cc7be58a8e3fea6bc55d1e7b3a5
Modified Files
--
src/interfaces/ecpg/preproc/ecpg.trailer | 7 +--
src/interf
Changed ecpg parser to allow RETURNING clauses without attached C variables.
Branch
--
REL9_5_STABLE
Details
---
https://git.postgresql.org/pg/commitdiff/f2ed2d0a12bede8e6d91b3acc8f6100be3927990
Modified Files
--
src/interfaces/ecpg/preproc/ecpg.trailer | 7 +--
src/interf
Changed ecpg parser to allow RETURNING clauses without attached C variables.
Branch
--
REL9_2_STABLE
Details
---
https://git.postgresql.org/pg/commitdiff/60b135c8262bd7d1d115de1797165a437a890a7a
Modified Files
--
src/interfaces/ecpg/preproc/ecpg.trailer | 7 +--
src/interf
Allow continuation lines in ecpg cppline parsing.
Branch
--
REL9_6_STABLE
Details
---
https://git.postgresql.org/pg/commitdiff/954490fecb4ee65e1f3fd5c38f65aaab64ea2099
Modified Files
--
src/interfaces/ecpg/preproc/pgc.l | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
-
Use atomic ops to hand out pages to scan in parallel scan.
With a lot of CPUs, the spinlock that protects the current scan location
in a parallel scan can become a bottleneck. Use an atomic fetch-and-add
instruction instead.
David Rowley
Discussion:
https://www.postgresql.org/message-id/cakjs1f
Heikki Linnakangas writes:
> Remove dedicated B-tree root-split record types.
This should have involved a WAL version (XLOG_PAGE_MAGIC) bump, no?
The new code can no longer read old WAL, so it's incompatible.
regards, tom lane
--
Sent via pgsql-committers mailing list
Correct representation of foreign tables in information schema
tables.table_type is supposed to be 'FOREIGN' rather than 'FOREIGN
TABLE' according to the SQL standard.
Branch
--
master
Details
---
https://git.postgresql.org/pg/commitdiff/9b5140fb503eb50634cd7e080d41f4d9af41e0a6
Modified
doc: Add logical replication to comparison matrix
Author: Steve Singer
Branch
--
master
Details
---
https://git.postgresql.org/pg/commitdiff/346d5bf1ca33bcf27eda5d23fba3999e6356b905
Modified Files
--
doc/src/sgml/high-availability.sgml | 43 +++--
doc: Add logical replication to comparison matrix
Author: Steve Singer
Branch
--
REL_10_STABLE
Details
---
https://git.postgresql.org/pg/commitdiff/2327690df4f839ed34b088727a632867cbc0988e
Modified Files
--
doc/src/sgml/high-availability.sgml | 43 ++
doc: Update URL of DocBook XSL stylesheets
Author: Masahiko Sawada
Branch
--
master
Details
---
https://git.postgresql.org/pg/commitdiff/4395f7daf3b40ecbd316bd2a68c253a56013a538
Modified Files
--
doc/src/sgml/docguide.sgml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-
doc: Update URL of DocBook XSL stylesheets
Author: Masahiko Sawada
Branch
--
REL_10_STABLE
Details
---
https://git.postgresql.org/pg/commitdiff/0c16efcb533c95cec3e11daa13dba18110231831
Modified Files
--
doc/src/sgml/docguide.sgml | 2 +-
1 file changed, 1 insertion(+), 1 del
Fix shm_toc.c to always return buffer-aligned memory.
Previously, if you passed a non-aligned size to shm_toc_create(), the
memory returned by shm_toc_allocate() would be similarly non-aligned.
This was exposed by commit 3cda10f41b, which allocated structs containing
a pg_atomic_uint64 field with
Make the planner assume that the entries in a VALUES list are distinct.
Previously, if we had to estimate the number of distinct values in a
VALUES column, we fell back on the default behavior used whenever we lack
statistics, which effectively is that there are Min(# of entries, 200)
distinct val
Extend the default rules file for contrib/unaccent with Vietnamese letters.
Improve generate_unaccent_rules.py to handle composed characters whose base
is another composed character rather than a plain letter. The net effect
of this is to add a bunch of multi-accented Vietnamese characters to
una
Fix pg_atomic_u64 initialization.
As Andres pointed out, pg_atomic_init_u64 must be used to initialize an
atomic variable, before it can be accessed with the actual atomic ops.
Trying to use pg_atomic_write_u64 on an uninitialized variable leads to a
failure with the fallback implementation that u
pg_dump: Support using synchronized snapshots on standbys
This became possible by commit
6c2003f8a1bbc7c192a2e83ec51581c018aa162f. This just makes pg_dump aware
of it and updates the documentation.
Author: Petr Jelinek
Branch
--
REL_10_STABLE
Details
---
https://git.postgresql.org/pg/
pg_dump: Support using synchronized snapshots on standbys
This became possible by commit
6c2003f8a1bbc7c192a2e83ec51581c018aa162f. This just makes pg_dump aware
of it and updates the documentation.
Author: Petr Jelinek
Branch
--
master
Details
---
https://git.postgresql.org/pg/commitd
22 matches
Mail list logo