agora inbox for [email protected]help / color / mirror / Atom feed
[PATCH 4/4] Remove pointless Exporter usage in Catalog.pm 28+ messages / 3 participants [nested] [flat]
* [PATCH 4/4] Remove pointless Exporter usage in Catalog.pm @ 2017-04-17 14:57 Dagfinn Ilmari Mannsåker <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Dagfinn Ilmari Mannsåker @ 2017-04-17 14:57 UTC (permalink / raw) None of the users actually import any of the subroutines, they just call them by their fully-qualified names. --- src/backend/catalog/Catalog.pm | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/backend/catalog/Catalog.pm b/src/backend/catalog/Catalog.pm index 9c06ec1..662df3b 100644 --- a/src/backend/catalog/Catalog.pm +++ b/src/backend/catalog/Catalog.pm @@ -16,11 +16,6 @@ package Catalog; use strict; use warnings; -require Exporter; -our @ISA = qw(Exporter); -our @EXPORT = (); -our @EXPORT_OK = qw(Catalogs SplitDataLine RenameTempFile); - # Call this function with an array of names of header files to parse. # Returns a nested data structure describing the data in the headers. sub Catalogs -- 2.7.4 --=-=-= Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: 8bit MIME-Version: 1.0 -- Sent via pgsql-hackers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers --=-=-=-- ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH v4 12/12] comment typos @ 2020-02-17 18:33 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2020-02-17 18:33 UTC (permalink / raw) --- contrib/pgcrypto/imath.c | 4 ++-- src/backend/access/transam/multixact.c | 2 +- src/backend/partitioning/partbounds.c | 2 +- src/include/lib/simplehash.h | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/contrib/pgcrypto/imath.c b/contrib/pgcrypto/imath.c index da4cdede76..a05a4bf5fd 100644 --- a/contrib/pgcrypto/imath.c +++ b/contrib/pgcrypto/imath.c @@ -3232,7 +3232,7 @@ s_embar(mp_int a, mp_int b, mp_int m, mp_int mu, mp_int c) We diverge from Knuth's algorithm in that we do not perform the subtraction from the remainder until we have determined that we have the correct - quotient digit. This makes our algorithm less efficient that Knuth because + quotient digit. This makes our algorithm less efficient than Knuth because we might have to perform multiple multiplication and comparison steps before the subtraction. The advantage is that it is easy to implement and ensure correctness without worrying about underflow from the subtraction. @@ -3355,7 +3355,7 @@ s_udiv_knuth(mp_int u, mp_int v) /* * Check to see if qhat > b, and decrease qhat if so. Theorem B - * guarantess that qhat is at most 2 larger than the actual value, so + * guarantees that qhat is at most 2 larger than the actual value, so * it is possible that qhat is greater than the maximum value that * will fit in a digit */ diff --git a/src/backend/access/transam/multixact.c b/src/backend/access/transam/multixact.c index 70d0e1c215..e2aa5c9ce4 100644 --- a/src/backend/access/transam/multixact.c +++ b/src/backend/access/transam/multixact.c @@ -2666,7 +2666,7 @@ SetOffsetVacuumLimit(bool is_startup) * We use this to determine whether the addition is "wrapping around" the * boundary point, hence the name. The reason we don't want to use the regular * 2^31-modulo arithmetic here is that we want to be able to use the whole of - * the 2^32-1 space here, allowing for more multixacts that would fit + * the 2^32-1 space here, allowing for more multixacts than would fit * otherwise. */ static bool diff --git a/src/backend/partitioning/partbounds.c b/src/backend/partitioning/partbounds.c index 4681441dcc..b9c65ff87c 100644 --- a/src/backend/partitioning/partbounds.c +++ b/src/backend/partitioning/partbounds.c @@ -1224,7 +1224,7 @@ merge_list_bounds(FmgrInfo *partsupfunc, Oid *partcollation, Assert(inner_index >= 0); /* - * Try merging both paritions. If successful, add the list value + * Try merging both partitions. If successful, add the list value * and index of the merged partition below. */ merged_index = merge_matching_partitions(&outer_map, &inner_map, diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index f7af921f5a..88f4c9a53f 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -560,7 +560,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --DiL7RhKs8rK9YGuF-- ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH v1 07/19] comment typos @ 2020-02-17 18:33 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2020-02-17 18:33 UTC (permalink / raw) --- contrib/pgcrypto/imath.c | 4 ++-- src/backend/access/transam/multixact.c | 2 +- src/backend/commands/tablecmds.c | 2 +- src/backend/executor/execExpr.c | 2 +- src/backend/postmaster/bgworker.c | 2 +- src/include/lib/simplehash.h | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/contrib/pgcrypto/imath.c b/contrib/pgcrypto/imath.c index da4cdede76..a05a4bf5fd 100644 --- a/contrib/pgcrypto/imath.c +++ b/contrib/pgcrypto/imath.c @@ -3232,7 +3232,7 @@ s_embar(mp_int a, mp_int b, mp_int m, mp_int mu, mp_int c) We diverge from Knuth's algorithm in that we do not perform the subtraction from the remainder until we have determined that we have the correct - quotient digit. This makes our algorithm less efficient that Knuth because + quotient digit. This makes our algorithm less efficient than Knuth because we might have to perform multiple multiplication and comparison steps before the subtraction. The advantage is that it is easy to implement and ensure correctness without worrying about underflow from the subtraction. @@ -3355,7 +3355,7 @@ s_udiv_knuth(mp_int u, mp_int v) /* * Check to see if qhat > b, and decrease qhat if so. Theorem B - * guarantess that qhat is at most 2 larger than the actual value, so + * guarantees that qhat is at most 2 larger than the actual value, so * it is possible that qhat is greater than the maximum value that * will fit in a digit */ diff --git a/src/backend/access/transam/multixact.c b/src/backend/access/transam/multixact.c index 70d0e1c215..e2aa5c9ce4 100644 --- a/src/backend/access/transam/multixact.c +++ b/src/backend/access/transam/multixact.c @@ -2666,7 +2666,7 @@ SetOffsetVacuumLimit(bool is_startup) * We use this to determine whether the addition is "wrapping around" the * boundary point, hence the name. The reason we don't want to use the regular * 2^31-modulo arithmetic here is that we want to be able to use the whole of - * the 2^32-1 space here, allowing for more multixacts that would fit + * the 2^32-1 space here, allowing for more multixacts than would fit * otherwise. */ static bool diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index 6162fb018c..037d457c3d 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -16846,7 +16846,7 @@ ATExecDetachPartition(Relation rel, RangeVar *name) list_free_deep(fks); /* - * Any sub-constrains that are in the referenced-side of a larger + * Any sub-constraints that are in the referenced-side of a larger * constraint have to be removed. This partition is no longer part of the * key space of the constraint. */ diff --git a/src/backend/executor/execExpr.c b/src/backend/executor/execExpr.c index 1370ffec50..c6a77bd66f 100644 --- a/src/backend/executor/execExpr.c +++ b/src/backend/executor/execExpr.c @@ -2366,7 +2366,7 @@ get_last_attnums_walker(Node *node, LastAttnumInfo *info) * evaluation of the expression will have the same type of slot, with an * equivalent descriptor. * - * Returns true if the the deforming step is required, false otherwise. + * Returns true if the deforming step is required, false otherwise. */ static bool ExecComputeSlotInfo(ExprState *state, ExprEvalStep *op) diff --git a/src/backend/postmaster/bgworker.c b/src/backend/postmaster/bgworker.c index 6c684b5e12..beb5e85434 100644 --- a/src/backend/postmaster/bgworker.c +++ b/src/backend/postmaster/bgworker.c @@ -1149,7 +1149,7 @@ WaitForBackgroundWorkerShutdown(BackgroundWorkerHandle *handle) * Instruct the postmaster to terminate a background worker. * * Note that it's safe to do this without regard to whether the worker is - * still running, or even if the worker may already have existed and been + * still running, or even if the worker may already have exited and been * unregistered. */ void diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 8cb03cda6c..88f4c9a53f 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -560,7 +560,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; @@ -633,7 +633,7 @@ restart: /* shift forward, starting at last occupied element */ /* - * TODO: This could be optimized to be one memcpy in may cases, + * TODO: This could be optimized to be one memcpy in many cases, * excepting wrapping around at the end of ->data. Hasn't shown up * in profiles so far though. */ -- 2.17.0 --4ybNbZnZ8tziJ7D6 Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v1-0008-doc-pg_stat_progress_basebackup.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/21] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --jI8keyz6grp/JLjh Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 05/18] comment typos @ 2021-02-10 23:45 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2021-02-10 23:45 UTC (permalink / raw) --- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 395be1ca9a..99a03c8f21 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -626,7 +626,7 @@ restart: uint32 curoptimal; SH_ELEMENT_TYPE *entry = &data[curelem]; - /* any empty bucket can directly be used */ + /* any empty bucket can be used directly */ if (entry->status == SH_STATUS_EMPTY) { tb->members++; -- 2.17.0 --lc9FT7cWel8HagAv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-One-fewer-not-one-less.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* [PATCH 02/10] comment typos @ 2023-01-15 23:00 Justin Pryzby <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Justin Pryzby @ 2023-01-15 23:00 UTC (permalink / raw) --- src/backend/commands/dbcommands.c | 2 +- src/backend/executor/execMain.c | 2 +- src/backend/jit/llvm/llvmjit_inline.cpp | 2 +- src/backend/replication/logical/snapbuild.c | 2 +- src/backend/replication/walsender.c | 6 +++--- src/bin/pg_dump/pg_backup_custom.c | 2 +- src/bin/pg_dump/pg_dumpall.c | 2 +- src/include/lib/ilist.h | 2 +- src/test/regress/expected/alter_table.out | 2 +- src/test/regress/expected/create_procedure.out | 2 +- src/test/regress/sql/alter_table.sql | 2 +- src/test/regress/sql/create_procedure.sql | 2 +- src/test/subscription/t/031_column_list.pl | 2 +- 13 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/backend/commands/dbcommands.c b/src/backend/commands/dbcommands.c index 1f4ce2fb9cf..ef05633bb05 100644 --- a/src/backend/commands/dbcommands.c +++ b/src/backend/commands/dbcommands.c @@ -3090,7 +3090,7 @@ dbase_redo(XLogReaderState *record) /* * There's a case where the copy source directory is missing for the - * same reason above. Create the emtpy source directory so that + * same reason above. Create the empty source directory so that * copydir below doesn't fail. The directory will be dropped soon by * recovery. */ diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c index a5115b9c1f7..39bfb48dc22 100644 --- a/src/backend/executor/execMain.c +++ b/src/backend/executor/execMain.c @@ -134,7 +134,7 @@ ExecutorStart(QueryDesc *queryDesc, int eflags) /* * In some cases (e.g. an EXECUTE statement) a query execution will skip * parse analysis, which means that the query_id won't be reported. Note - * that it's harmless to report the query_id multiple time, as the call + * that it's harmless to report the query_id multiple times, as the call * will be ignored if the top level query_id has already been reported. */ pgstat_report_query_id(queryDesc->plannedstmt->queryId, false); diff --git a/src/backend/jit/llvm/llvmjit_inline.cpp b/src/backend/jit/llvm/llvmjit_inline.cpp index dc35e002f51..c765add8564 100644 --- a/src/backend/jit/llvm/llvmjit_inline.cpp +++ b/src/backend/jit/llvm/llvmjit_inline.cpp @@ -753,7 +753,7 @@ function_inlinable(llvm::Function &F, /* import referenced function itself */ importVars.insert(referencedFunction->getName()); - /* import referenced function and its dependants */ + /* import referenced function and its dependents */ for (auto& recImportVar : recImportVars) importVars.insert(recImportVar.first()); } diff --git a/src/backend/replication/logical/snapbuild.c b/src/backend/replication/logical/snapbuild.c index 829c5681120..62542827e4b 100644 --- a/src/backend/replication/logical/snapbuild.c +++ b/src/backend/replication/logical/snapbuild.c @@ -1816,7 +1816,7 @@ SnapBuildSerialize(SnapBuild *builder, XLogRecPtr lsn) fsync_fname("pg_logical/snapshots", true); /* - * Now there's no way we can loose the dumped state anymore, remember this + * Now there's no way we can lose the dumped state anymore, remember this * as a serialization point. */ builder->last_serialized_snapshot = lsn; diff --git a/src/backend/replication/walsender.c b/src/backend/replication/walsender.c index 4ed3747e3f9..75e8363e248 100644 --- a/src/backend/replication/walsender.c +++ b/src/backend/replication/walsender.c @@ -2050,9 +2050,9 @@ PhysicalConfirmReceivedLocation(XLogRecPtr lsn) /* * One could argue that the slot should be saved to disk now, but that'd - * be energy wasted - the worst lost information can do here is give us - * wrong information in a statistics view - we'll just potentially be more - * conservative in removing files. + * be energy wasted - the worst thing lost information could cause here is + * to give wrong information in a statistics view - we'll just potentially + * be more conservative in removing files. */ } diff --git a/src/bin/pg_dump/pg_backup_custom.c b/src/bin/pg_dump/pg_backup_custom.c index d1e54644a94..7529367a7b9 100644 --- a/src/bin/pg_dump/pg_backup_custom.c +++ b/src/bin/pg_dump/pg_backup_custom.c @@ -99,7 +99,7 @@ static size_t _CustomReadFunc(ArchiveHandle *AH, char **buf, size_t *buflen); * It's task is to create any extra archive context (using AH->formatData), * and to initialize the supported function pointers. * - * It should also prepare whatever it's input source is for reading/writing, + * It should also prepare whatever its input source is for reading/writing, * and in the case of a read mode connection, it should load the Header & TOC. */ void diff --git a/src/bin/pg_dump/pg_dumpall.c b/src/bin/pg_dump/pg_dumpall.c index fbd1c6fc85b..cd421c59443 100644 --- a/src/bin/pg_dump/pg_dumpall.c +++ b/src/bin/pg_dump/pg_dumpall.c @@ -995,7 +995,7 @@ dumpRoleMembership(PGconn *conn) fprintf(OPF, "--\n-- Role memberships\n--\n\n"); /* - * We can't dump these GRANT commands in arbitary order, because a role + * We can't dump these GRANT commands in arbitrary order, because a role * that is named as a grantor must already have ADMIN OPTION on the * role for which it is granting permissions, except for the boostrap * superuser, who can always be named as the grantor. diff --git a/src/include/lib/ilist.h b/src/include/lib/ilist.h index e03aa1c683b..095107a99c4 100644 --- a/src/include/lib/ilist.h +++ b/src/include/lib/ilist.h @@ -39,7 +39,7 @@ * operations that can be done without branches (and thus faster) on lists * that use circular representation. However, it is often convenient to * initialize list headers to zeroes rather than setting them up with an - * explicit initialization function, so we also allow the NULL initalization. + * explicit initialization function, so we also allow the NULL initialization. * * EXAMPLES * diff --git a/src/test/regress/expected/alter_table.out b/src/test/regress/expected/alter_table.out index 9e5f6c1a804..97bfc3475b6 100644 --- a/src/test/regress/expected/alter_table.out +++ b/src/test/regress/expected/alter_table.out @@ -2566,7 +2566,7 @@ select * from at_view_2; drop view at_view_2; drop view at_view_1; drop table at_base_table; --- check adding a column not iself requiring a rewrite, together with +-- check adding a column not itself requiring a rewrite, together with -- a column requiring a default (bug #16038) -- ensure that rewrites aren't silently optimized away, removing the -- value of the test diff --git a/src/test/regress/expected/create_procedure.out b/src/test/regress/expected/create_procedure.out index 46c827f9791..f2a677fa552 100644 --- a/src/test/regress/expected/create_procedure.out +++ b/src/test/regress/expected/create_procedure.out @@ -100,7 +100,7 @@ SELECT * FROM cp_test ORDER BY b COLLATE "C"; 1 | xyzzy (4 rows) --- utitlity functions currently not supported here +-- utility functions currently not supported here CREATE PROCEDURE ptestx() LANGUAGE SQL BEGIN ATOMIC diff --git a/src/test/regress/sql/alter_table.sql b/src/test/regress/sql/alter_table.sql index f58b2f75d5b..b5d57a771ae 100644 --- a/src/test/regress/sql/alter_table.sql +++ b/src/test/regress/sql/alter_table.sql @@ -1635,7 +1635,7 @@ drop view at_view_2; drop view at_view_1; drop table at_base_table; --- check adding a column not iself requiring a rewrite, together with +-- check adding a column not itself requiring a rewrite, together with -- a column requiring a default (bug #16038) -- ensure that rewrites aren't silently optimized away, removing the diff --git a/src/test/regress/sql/create_procedure.sql b/src/test/regress/sql/create_procedure.sql index 75cc0fcf2a6..35b872779ef 100644 --- a/src/test/regress/sql/create_procedure.sql +++ b/src/test/regress/sql/create_procedure.sql @@ -42,7 +42,7 @@ CALL ptest1s('b'); SELECT * FROM cp_test ORDER BY b COLLATE "C"; --- utitlity functions currently not supported here +-- utility functions currently not supported here CREATE PROCEDURE ptestx() LANGUAGE SQL BEGIN ATOMIC diff --git a/src/test/subscription/t/031_column_list.pl b/src/test/subscription/t/031_column_list.pl index 7c313e26eea..fd77757352a 100644 --- a/src/test/subscription/t/031_column_list.pl +++ b/src/test/subscription/t/031_column_list.pl @@ -1034,7 +1034,7 @@ is( $node_subscriber->safe_psql('postgres', "SELECT * FROM s1.t ORDER BY a"), 4|5|6), 'two publications, publishing the same relation'); -# Now resync the subcription, but with publications in the opposite order. +# Now resync the subscription, but with publications in the opposite order. # The result should be the same. $node_subscriber->safe_psql( -- 2.25.1 --kjpMrWxdCilgNbo1 Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Avoid-hardcoded-reference-only-to-.gz.patch" ^ permalink raw reply [nested|flat] 28+ messages in thread
* Re: pgbench with partitioned tables @ 2025-02-03 04:37 Sergey Tatarintsev <[email protected]> 0 siblings, 0 replies; 28+ messages in thread From: Sergey Tatarintsev @ 2025-02-03 04:37 UTC (permalink / raw) To: Álvaro Herrera <[email protected]>; Melanie Plageman <[email protected]>; +Cc: [email protected] <[email protected]> 02.02.2025 20:45, Álvaro Herrera пишет: > On 2025-Jan-31, Melanie Plageman wrote: > >> Maybe instead of just not using COPY FREEZE on a table if it is >> partitioned, we could add new data generation init_steps. Perhaps one >> that is client-side data generation (g) but with no freezing? I'm not >> really sure what the letter would be (f? making it f, g, and G?). > I think it makes sense to do what you suggest, but on the other hand, > the original code that Sergey is patching looks like a hack in the sense > that it hardcodes which tables to use FREEZE with. There's no point to > doing things that way actually, so accepting Sergey's patch to replace > that with a relkind check feels sensible to me. > > I think the query should be > SELECT relkind FROM pg_catalog.pg_class WHERE oid='%s'::pg_catalog.regclass > if only for consistency with pgbench's other query on catalogs. > > > Your proposal to add different init_steps might be reasonable, at least > if we allowed partitionedness of tables to vary in other ways (eg. if we > made pgbench_history partitioned), but I don't think it conflicts with > Sergey's patch in spirit. Thanks for the note. I changed the query in the patch (v2 patch attached) Btw, an additional benefit from the patch is that we can use foreign tables (for example, to test postgres_fdw optimizations) -- With best regards, Sergey Tatarintsev, PostgresPro Attachments: [text/x-patch] v1-0002-Fix-pgbench-client-side-data-generation-f.patch (2.1K, ../../[email protected]/2-v1-0002-Fix-pgbench-client-side-data-generation-f.patch) download | inline diff: From 9aaf2b222d6eb0c218c8a417280a8fdc0a42c296 Mon Sep 17 00:00:00 2001 From: Sergey Tatarintsev <[email protected]> Date: Thu, 30 Jan 2025 14:52:29 +0700 Subject: [PATCH-v1] Fix pgbench client-side data generation for partitioned tables Client-side data generation cannot perform COPY WITH (FREEZE = ON) on partitioned tables except pgbench_accounts. Patch disables FREEZE for any non-regular tables --- src/bin/pgbench/pgbench.c | 34 +++++++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/src/bin/pgbench/pgbench.c b/src/bin/pgbench/pgbench.c index b5cf3c6ed01..cac5312c4b1 100644 --- a/src/bin/pgbench/pgbench.c +++ b/src/bin/pgbench/pgbench.c @@ -847,6 +847,28 @@ static const PsqlScanCallbacks pgbench_callbacks = { NULL, /* don't need get_variable functionality */ }; +static bool +is_regular_table(PGconn *con, const char *table) +{ + PGresult *res; + char *sql = psprintf("SELECT relkind FROM pg_catalog.pg_class WHERE oid='%s'::pg_catalog.regclass", table); + bool is_regular_table = true; + + res = PQexec(con, sql); + if (PQresultStatus(res) != PGRES_TUPLES_OK) + { + pg_log_error("query failed: %s", PQerrorMessage(con)); + pg_log_error_detail("Query was: %s", sql); + exit(1); + } + if (!PQgetisnull(res, 0, 0)) + is_regular_table = strncmp(PQgetvalue(res, 0, 0), "r", 1) == 0; + + PQclear(res); + pfree(sql); + return is_regular_table; +} + static inline pg_time_usec_t pg_time_now(void) { @@ -4958,16 +4980,10 @@ initPopulateTable(PGconn *con, const char *table, int64 base, initPQExpBuffer(&sql); - /* - * Use COPY with FREEZE on v14 and later for all the tables except - * pgbench_accounts when it is partitioned. - */ - if (PQserverVersion(con) >= 140000) - { - if (strcmp(table, "pgbench_accounts") != 0 || - partitions == 0) + /* Use COPY with FREEZE on v14 and later for all regular tables */ + if ((PQserverVersion(con) >= 140000) && is_regular_table(con, table)) copy_statement_fmt = "copy %s from stdin with (freeze on)"; - } + n = pg_snprintf(copy_statement, sizeof(copy_statement), copy_statement_fmt, table); if (n >= sizeof(copy_statement)) -- 2.43.0 ^ permalink raw reply [nested|flat] 28+ messages in thread
end of thread, other threads:[~2025-02-03 04:37 UTC | newest] Thread overview: 28+ messages (download: mbox mbox.gz follow: Atom feed) -- links below jump to the message on this page -- 2017-04-17 14:57 [PATCH 4/4] Remove pointless Exporter usage in Catalog.pm Dagfinn Ilmari Mannsåker <[email protected]> 2020-02-17 18:33 [PATCH v4 12/12] comment typos Justin Pryzby <[email protected]> 2020-02-17 18:33 [PATCH v1 07/19] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/21] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2021-02-10 23:45 [PATCH 05/18] comment typos Justin Pryzby <[email protected]> 2023-01-15 23:00 [PATCH 02/10] comment typos Justin Pryzby <[email protected]> 2025-02-03 04:37 Re: pgbench with partitioned tables Sergey Tatarintsev <[email protected]>
This inbox is served by agora; see mirroring instructions for how to clone and mirror all data and code used for this inbox