v2-0001-Move-constant-into-format-string.patch
text/x-patch
Filename: v2-0001-Move-constant-into-format-string.patch
Type: text/x-patch
Part: 0
Patch
Format: format-patch
Series: patch v2-0001
Subject: Move constant into format string
| File | + | − |
|---|---|---|
| src/bin/pgbench/pgbench.c | 2 | 2 |
From 8c4eb4849b1282f1a0947ddcf3f599e384a5a428 Mon Sep 17 00:00:00 2001
From: Tristan Partin <tristan@neon.tech>
Date: Tue, 23 May 2023 09:21:55 -0500
Subject: [PATCH v2 1/2] Move constant into format string
If we are always going to write a 0, just put the 0 in the format
string.
---
src/bin/pgbench/pgbench.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/bin/pgbench/pgbench.c b/src/bin/pgbench/pgbench.c
index 1d1670d4c2..320d348a0f 100644
--- a/src/bin/pgbench/pgbench.c
+++ b/src/bin/pgbench/pgbench.c
@@ -4947,8 +4947,8 @@ initGenerateDataClientSide(PGconn *con)
/* "filler" column defaults to blank padded empty string */
printfPQExpBuffer(&sql,
- INT64_FORMAT "\t" INT64_FORMAT "\t%d\t\n",
- j, k / naccounts + 1, 0);
+ INT64_FORMAT "\t" INT64_FORMAT "\t0\t\n",
+ j, k / naccounts + 1);
if (PQputline(con, sql.data))
pg_fatal("PQputline failed");
--
Tristan Partin
Neon (https://neon.tech)