LCOV - differential code coverage report
Current view: top level - src/bin/pgbench - pgbench.c (source / functions) Coverage Total Hit UNC LBC UBC GBC GIC GNC CBC DUB DCB
Current: Differential Code Coverage 16@8cea358b128 vs 17@8cea358b128 Lines: 85.5 % 2893 2474 9 3 407 4 1 77 2392 2 37
Current Date: 2024-04-14 14:21:10 Functions: 96.0 % 125 120 5 13 107 1
Baseline: 16@8cea358b128 Branches: 75.5 % 1929 1456 16 4 453 2 2 50 1402
Baseline Date: 2024-04-14 14:21:09 Line coverage date bins:
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed [..60] days: 84.6 % 13 11 2 11
(60,120] days: 80.0 % 20 16 4 12 4
(180,240] days: 100.0 % 13 13 13
(240..) days: 85.5 % 2847 2434 3 3 407 4 1 41 2388
Function coverage date bins:
(240..) days: 96.0 % 125 120 5 13 107
Branch coverage date bins:
[..60] days: 64.3 % 14 9 5 9
(60,120] days: 80.0 % 20 16 4 14 2
(180,240] days: 85.7 % 14 12 2 12
(240..) days: 75.4 % 1881 1419 5 4 453 2 2 15 1400

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*
                                  2                 :                :  * pgbench.c
                                  3                 :                :  *
                                  4                 :                :  * A simple benchmark program for PostgreSQL
                                  5                 :                :  * Originally written by Tatsuo Ishii and enhanced by many contributors.
                                  6                 :                :  *
                                  7                 :                :  * src/bin/pgbench/pgbench.c
                                  8                 :                :  * Copyright (c) 2000-2024, PostgreSQL Global Development Group
                                  9                 :                :  * ALL RIGHTS RESERVED;
                                 10                 :                :  *
                                 11                 :                :  * Permission to use, copy, modify, and distribute this software and its
                                 12                 :                :  * documentation for any purpose, without fee, and without a written agreement
                                 13                 :                :  * is hereby granted, provided that the above copyright notice and this
                                 14                 :                :  * paragraph and the following two paragraphs appear in all copies.
                                 15                 :                :  *
                                 16                 :                :  * IN NO EVENT SHALL THE AUTHOR OR DISTRIBUTORS BE LIABLE TO ANY PARTY FOR
                                 17                 :                :  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING
                                 18                 :                :  * LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
                                 19                 :                :  * DOCUMENTATION, EVEN IF THE AUTHOR OR DISTRIBUTORS HAVE BEEN ADVISED OF THE
                                 20                 :                :  * POSSIBILITY OF SUCH DAMAGE.
                                 21                 :                :  *
                                 22                 :                :  * THE AUTHOR AND DISTRIBUTORS SPECIFICALLY DISCLAIMS ANY WARRANTIES,
                                 23                 :                :  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
                                 24                 :                :  * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
                                 25                 :                :  * ON AN "AS IS" BASIS, AND THE AUTHOR AND DISTRIBUTORS HAS NO OBLIGATIONS TO
                                 26                 :                :  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
                                 27                 :                :  *
                                 28                 :                :  */
                                 29                 :                : 
                                 30                 :                : #if defined(WIN32) && FD_SETSIZE < 1024
                                 31                 :                : #error FD_SETSIZE needs to have been increased
                                 32                 :                : #endif
                                 33                 :                : 
                                 34                 :                : #include "postgres_fe.h"
                                 35                 :                : 
                                 36                 :                : #include <ctype.h>
                                 37                 :                : #include <float.h>
                                 38                 :                : #include <limits.h>
                                 39                 :                : #include <math.h>
                                 40                 :                : #include <signal.h>
                                 41                 :                : #include <time.h>
                                 42                 :                : #include <sys/time.h>
                                 43                 :                : #include <sys/resource.h>     /* for getrlimit */
                                 44                 :                : 
                                 45                 :                : /* For testing, PGBENCH_USE_SELECT can be defined to force use of that code */
                                 46                 :                : #if defined(HAVE_PPOLL) && !defined(PGBENCH_USE_SELECT)
                                 47                 :                : #define POLL_USING_PPOLL
                                 48                 :                : #ifdef HAVE_POLL_H
                                 49                 :                : #include <poll.h>
                                 50                 :                : #endif
                                 51                 :                : #else                           /* no ppoll(), so use select() */
                                 52                 :                : #define POLL_USING_SELECT
                                 53                 :                : #include <sys/select.h>
                                 54                 :                : #endif
                                 55                 :                : 
                                 56                 :                : #include "common/int.h"
                                 57                 :                : #include "common/logging.h"
                                 58                 :                : #include "common/pg_prng.h"
                                 59                 :                : #include "common/string.h"
                                 60                 :                : #include "common/username.h"
                                 61                 :                : #include "fe_utils/cancel.h"
                                 62                 :                : #include "fe_utils/conditional.h"
                                 63                 :                : #include "fe_utils/option_utils.h"
                                 64                 :                : #include "fe_utils/string_utils.h"
                                 65                 :                : #include "getopt_long.h"
                                 66                 :                : #include "libpq-fe.h"
                                 67                 :                : #include "pgbench.h"
                                 68                 :                : #include "port/pg_bitutils.h"
                                 69                 :                : #include "portability/instr_time.h"
                                 70                 :                : 
                                 71                 :                : /* X/Open (XSI) requires <math.h> to provide M_PI, but core POSIX does not */
                                 72                 :                : #ifndef M_PI
                                 73                 :                : #define M_PI 3.14159265358979323846
                                 74                 :                : #endif
                                 75                 :                : 
                                 76                 :                : #define ERRCODE_T_R_SERIALIZATION_FAILURE  "40001"
                                 77                 :                : #define ERRCODE_T_R_DEADLOCK_DETECTED  "40P01"
                                 78                 :                : #define ERRCODE_UNDEFINED_TABLE  "42P01"
                                 79                 :                : 
                                 80                 :                : /*
                                 81                 :                :  * Hashing constants
                                 82                 :                :  */
                                 83                 :                : #define FNV_PRIME           UINT64CONST(0x100000001b3)
                                 84                 :                : #define FNV_OFFSET_BASIS    UINT64CONST(0xcbf29ce484222325)
                                 85                 :                : #define MM2_MUL             UINT64CONST(0xc6a4a7935bd1e995)
                                 86                 :                : #define MM2_MUL_TIMES_8     UINT64CONST(0x35253c9ade8f4ca8)
                                 87                 :                : #define MM2_ROT             47
                                 88                 :                : 
                                 89                 :                : /*
                                 90                 :                :  * Multi-platform socket set implementations
                                 91                 :                :  */
                                 92                 :                : 
                                 93                 :                : #ifdef POLL_USING_PPOLL
                                 94                 :                : #define SOCKET_WAIT_METHOD "ppoll"
                                 95                 :                : 
                                 96                 :                : typedef struct socket_set
                                 97                 :                : {
                                 98                 :                :     int         maxfds;         /* allocated length of pollfds[] array */
                                 99                 :                :     int         curfds;         /* number currently in use */
                                100                 :                :     struct pollfd pollfds[FLEXIBLE_ARRAY_MEMBER];
                                101                 :                : } socket_set;
                                102                 :                : 
                                103                 :                : #endif                          /* POLL_USING_PPOLL */
                                104                 :                : 
                                105                 :                : #ifdef POLL_USING_SELECT
                                106                 :                : #define SOCKET_WAIT_METHOD "select"
                                107                 :                : 
                                108                 :                : typedef struct socket_set
                                109                 :                : {
                                110                 :                :     int         maxfd;          /* largest FD currently set in fds */
                                111                 :                :     fd_set      fds;
                                112                 :                : } socket_set;
                                113                 :                : 
                                114                 :                : #endif                          /* POLL_USING_SELECT */
                                115                 :                : 
                                116                 :                : /*
                                117                 :                :  * Multi-platform thread implementations
                                118                 :                :  */
                                119                 :                : 
                                120                 :                : #ifdef WIN32
                                121                 :                : /* Use Windows threads */
                                122                 :                : #include <windows.h>
                                123                 :                : #define GETERRNO() (_dosmaperr(GetLastError()), errno)
                                124                 :                : #define THREAD_T HANDLE
                                125                 :                : #define THREAD_FUNC_RETURN_TYPE unsigned
                                126                 :                : #define THREAD_FUNC_RETURN return 0
                                127                 :                : #define THREAD_FUNC_CC __stdcall
                                128                 :                : #define THREAD_CREATE(handle, function, arg) \
                                129                 :                :     ((*(handle) = (HANDLE) _beginthreadex(NULL, 0, (function), (arg), 0, NULL)) == 0 ? errno : 0)
                                130                 :                : #define THREAD_JOIN(handle) \
                                131                 :                :     (WaitForSingleObject(handle, INFINITE) != WAIT_OBJECT_0 ? \
                                132                 :                :     GETERRNO() : CloseHandle(handle) ? 0 : GETERRNO())
                                133                 :                : #define THREAD_BARRIER_T SYNCHRONIZATION_BARRIER
                                134                 :                : #define THREAD_BARRIER_INIT(barrier, n) \
                                135                 :                :     (InitializeSynchronizationBarrier((barrier), (n), 0) ? 0 : GETERRNO())
                                136                 :                : #define THREAD_BARRIER_WAIT(barrier) \
                                137                 :                :     EnterSynchronizationBarrier((barrier), \
                                138                 :                :                                 SYNCHRONIZATION_BARRIER_FLAGS_BLOCK_ONLY)
                                139                 :                : #define THREAD_BARRIER_DESTROY(barrier)
                                140                 :                : #else
                                141                 :                : /* Use POSIX threads */
                                142                 :                : #include "port/pg_pthread.h"
                                143                 :                : #define THREAD_T pthread_t
                                144                 :                : #define THREAD_FUNC_RETURN_TYPE void *
                                145                 :                : #define THREAD_FUNC_RETURN return NULL
                                146                 :                : #define THREAD_FUNC_CC
                                147                 :                : #define THREAD_CREATE(handle, function, arg) \
                                148                 :                :     pthread_create((handle), NULL, (function), (arg))
                                149                 :                : #define THREAD_JOIN(handle) \
                                150                 :                :     pthread_join((handle), NULL)
                                151                 :                : #define THREAD_BARRIER_T pthread_barrier_t
                                152                 :                : #define THREAD_BARRIER_INIT(barrier, n) \
                                153                 :                :     pthread_barrier_init((barrier), NULL, (n))
                                154                 :                : #define THREAD_BARRIER_WAIT(barrier) pthread_barrier_wait((barrier))
                                155                 :                : #define THREAD_BARRIER_DESTROY(barrier) pthread_barrier_destroy((barrier))
                                156                 :                : #endif
                                157                 :                : 
                                158                 :                : 
                                159                 :                : /********************************************************************
                                160                 :                :  * some configurable parameters */
                                161                 :                : 
                                162                 :                : #define DEFAULT_INIT_STEPS "dtgvp"    /* default -I setting */
                                163                 :                : #define ALL_INIT_STEPS "dtgGvpf"  /* all possible steps */
                                164                 :                : 
                                165                 :                : #define LOG_STEP_SECONDS    5   /* seconds between log messages */
                                166                 :                : #define DEFAULT_NXACTS  10      /* default nxacts */
                                167                 :                : 
                                168                 :                : #define MIN_GAUSSIAN_PARAM      2.0 /* minimum parameter for gauss */
                                169                 :                : 
                                170                 :                : #define MIN_ZIPFIAN_PARAM       1.001   /* minimum parameter for zipfian */
                                171                 :                : #define MAX_ZIPFIAN_PARAM       1000.0  /* maximum parameter for zipfian */
                                172                 :                : 
                                173                 :                : int         nxacts = 0;         /* number of transactions per client */
                                174                 :                : int         duration = 0;       /* duration in seconds */
                                175                 :                : int64       end_time = 0;       /* when to stop in micro seconds, under -T */
                                176                 :                : 
                                177                 :                : /*
                                178                 :                :  * scaling factor. for example, scale = 10 will make 1000000 tuples in
                                179                 :                :  * pgbench_accounts table.
                                180                 :                :  */
                                181                 :                : int         scale = 1;
                                182                 :                : 
                                183                 :                : /*
                                184                 :                :  * fillfactor. for example, fillfactor = 90 will use only 90 percent
                                185                 :                :  * space during inserts and leave 10 percent free.
                                186                 :                :  */
                                187                 :                : int         fillfactor = 100;
                                188                 :                : 
                                189                 :                : /*
                                190                 :                :  * use unlogged tables?
                                191                 :                :  */
                                192                 :                : bool        unlogged_tables = false;
                                193                 :                : 
                                194                 :                : /*
                                195                 :                :  * log sampling rate (1.0 = log everything, 0.0 = option not given)
                                196                 :                :  */
                                197                 :                : double      sample_rate = 0.0;
                                198                 :                : 
                                199                 :                : /*
                                200                 :                :  * When threads are throttled to a given rate limit, this is the target delay
                                201                 :                :  * to reach that rate in usec.  0 is the default and means no throttling.
                                202                 :                :  */
                                203                 :                : double      throttle_delay = 0;
                                204                 :                : 
                                205                 :                : /*
                                206                 :                :  * Transactions which take longer than this limit (in usec) are counted as
                                207                 :                :  * late, and reported as such, although they are completed anyway. When
                                208                 :                :  * throttling is enabled, execution time slots that are more than this late
                                209                 :                :  * are skipped altogether, and counted separately.
                                210                 :                :  */
                                211                 :                : int64       latency_limit = 0;
                                212                 :                : 
                                213                 :                : /*
                                214                 :                :  * tablespace selection
                                215                 :                :  */
                                216                 :                : char       *tablespace = NULL;
                                217                 :                : char       *index_tablespace = NULL;
                                218                 :                : 
                                219                 :                : /*
                                220                 :                :  * Number of "pgbench_accounts" partitions.  0 is the default and means no
                                221                 :                :  * partitioning.
                                222                 :                :  */
                                223                 :                : static int  partitions = 0;
                                224                 :                : 
                                225                 :                : /* partitioning strategy for "pgbench_accounts" */
                                226                 :                : typedef enum
                                227                 :                : {
                                228                 :                :     PART_NONE,                  /* no partitioning */
                                229                 :                :     PART_RANGE,                 /* range partitioning */
                                230                 :                :     PART_HASH,                  /* hash partitioning */
                                231                 :                : } partition_method_t;
                                232                 :                : 
                                233                 :                : static partition_method_t partition_method = PART_NONE;
                                234                 :                : static const char *const PARTITION_METHOD[] = {"none", "range", "hash"};
                                235                 :                : 
                                236                 :                : /* random seed used to initialize base_random_sequence */
                                237                 :                : int64       random_seed = -1;
                                238                 :                : 
                                239                 :                : /*
                                240                 :                :  * end of configurable parameters
                                241                 :                :  *********************************************************************/
                                242                 :                : 
                                243                 :                : #define nbranches   1           /* Makes little sense to change this.  Change
                                244                 :                :                                  * -s instead */
                                245                 :                : #define ntellers    10
                                246                 :                : #define naccounts   100000
                                247                 :                : 
                                248                 :                : /*
                                249                 :                :  * The scale factor at/beyond which 32bit integers are incapable of storing
                                250                 :                :  * 64bit values.
                                251                 :                :  *
                                252                 :                :  * Although the actual threshold is 21474, we use 20000 because it is easier to
                                253                 :                :  * document and remember, and isn't that far away from the real threshold.
                                254                 :                :  */
                                255                 :                : #define SCALE_32BIT_THRESHOLD 20000
                                256                 :                : 
                                257                 :                : bool        use_log;            /* log transaction latencies to a file */
                                258                 :                : bool        use_quiet;          /* quiet logging onto stderr */
                                259                 :                : int         agg_interval;       /* log aggregates instead of individual
                                260                 :                :                                  * transactions */
                                261                 :                : bool        per_script_stats = false;   /* whether to collect stats per script */
                                262                 :                : int         progress = 0;       /* thread progress report every this seconds */
                                263                 :                : bool        progress_timestamp = false; /* progress report with Unix time */
                                264                 :                : int         nclients = 1;       /* number of clients */
                                265                 :                : int         nthreads = 1;       /* number of threads */
                                266                 :                : bool        is_connect;         /* establish connection for each transaction */
                                267                 :                : bool        report_per_command = false; /* report per-command latencies,
                                268                 :                :                                          * retries after errors and failures
                                269                 :                :                                          * (errors without retrying) */
                                270                 :                : int         main_pid;           /* main process id used in log filename */
                                271                 :                : 
                                272                 :                : /*
                                273                 :                :  * There are different types of restrictions for deciding that the current
                                274                 :                :  * transaction with a serialization/deadlock error can no longer be retried and
                                275                 :                :  * should be reported as failed:
                                276                 :                :  * - max_tries (--max-tries) can be used to limit the number of tries;
                                277                 :                :  * - latency_limit (-L) can be used to limit the total time of tries;
                                278                 :                :  * - duration (-T) can be used to limit the total benchmark time.
                                279                 :                :  *
                                280                 :                :  * They can be combined together, and you need to use at least one of them to
                                281                 :                :  * retry the transactions with serialization/deadlock errors. If none of them is
                                282                 :                :  * used, the default value of max_tries is 1 and such transactions will not be
                                283                 :                :  * retried.
                                284                 :                :  */
                                285                 :                : 
                                286                 :                : /*
                                287                 :                :  * We cannot retry a transaction after the serialization/deadlock error if its
                                288                 :                :  * number of tries reaches this maximum; if its value is zero, it is not used.
                                289                 :                :  */
                                290                 :                : uint32      max_tries = 1;
                                291                 :                : 
                                292                 :                : bool        failures_detailed = false;  /* whether to group failures in
                                293                 :                :                                          * reports or logs by basic types */
                                294                 :                : 
                                295                 :                : const char *pghost = NULL;
                                296                 :                : const char *pgport = NULL;
                                297                 :                : const char *username = NULL;
                                298                 :                : const char *dbName = NULL;
                                299                 :                : char       *logfile_prefix = NULL;
                                300                 :                : const char *progname;
                                301                 :                : 
                                302                 :                : #define WSEP '@'                /* weight separator */
                                303                 :                : 
                                304                 :                : volatile sig_atomic_t timer_exceeded = false;   /* flag from signal handler */
                                305                 :                : 
                                306                 :                : /*
                                307                 :                :  * We don't want to allocate variables one by one; for efficiency, add a
                                308                 :                :  * constant margin each time it overflows.
                                309                 :                :  */
                                310                 :                : #define VARIABLES_ALLOC_MARGIN  8
                                311                 :                : 
                                312                 :                : /*
                                313                 :                :  * Variable definitions.
                                314                 :                :  *
                                315                 :                :  * If a variable only has a string value, "svalue" is that value, and value is
                                316                 :                :  * "not set".  If the value is known, "value" contains the value (in any
                                317                 :                :  * variant).
                                318                 :                :  *
                                319                 :                :  * In this case "svalue" contains the string equivalent of the value, if we've
                                320                 :                :  * had occasion to compute that, or NULL if we haven't.
                                321                 :                :  */
                                322                 :                : typedef struct
                                323                 :                : {
                                324                 :                :     char       *name;           /* variable's name */
                                325                 :                :     char       *svalue;         /* its value in string form, if known */
                                326                 :                :     PgBenchValue value;         /* actual variable's value */
                                327                 :                : } Variable;
                                328                 :                : 
                                329                 :                : /*
                                330                 :                :  * Data structure for client variables.
                                331                 :                :  */
                                332                 :                : typedef struct
                                333                 :                : {
                                334                 :                :     Variable   *vars;           /* array of variable definitions */
                                335                 :                :     int         nvars;          /* number of variables */
                                336                 :                : 
                                337                 :                :     /*
                                338                 :                :      * The maximum number of variables that we can currently store in 'vars'
                                339                 :                :      * without having to reallocate more space. We must always have max_vars
                                340                 :                :      * >= nvars.
                                341                 :                :      */
                                342                 :                :     int         max_vars;
                                343                 :                : 
                                344                 :                :     bool        vars_sorted;    /* are variables sorted by name? */
                                345                 :                : } Variables;
                                346                 :                : 
                                347                 :                : #define MAX_SCRIPTS     128     /* max number of SQL scripts allowed */
                                348                 :                : #define SHELL_COMMAND_SIZE  256 /* maximum size allowed for shell command */
                                349                 :                : 
                                350                 :                : /*
                                351                 :                :  * Simple data structure to keep stats about something.
                                352                 :                :  *
                                353                 :                :  * XXX probably the first value should be kept and used as an offset for
                                354                 :                :  * better numerical stability...
                                355                 :                :  */
                                356                 :                : typedef struct SimpleStats
                                357                 :                : {
                                358                 :                :     int64       count;          /* how many values were encountered */
                                359                 :                :     double      min;            /* the minimum seen */
                                360                 :                :     double      max;            /* the maximum seen */
                                361                 :                :     double      sum;            /* sum of values */
                                362                 :                :     double      sum2;           /* sum of squared values */
                                363                 :                : } SimpleStats;
                                364                 :                : 
                                365                 :                : /*
                                366                 :                :  * The instr_time type is expensive when dealing with time arithmetic.  Define
                                367                 :                :  * a type to hold microseconds instead.  Type int64 is good enough for about
                                368                 :                :  * 584500 years.
                                369                 :                :  */
                                370                 :                : typedef int64 pg_time_usec_t;
                                371                 :                : 
                                372                 :                : /*
                                373                 :                :  * Data structure to hold various statistics: per-thread and per-script stats
                                374                 :                :  * are maintained and merged together.
                                375                 :                :  */
                                376                 :                : typedef struct StatsData
                                377                 :                : {
                                378                 :                :     pg_time_usec_t start_time;  /* interval start time, for aggregates */
                                379                 :                : 
                                380                 :                :     /*----------
                                381                 :                :      * Transactions are counted depending on their execution and outcome.
                                382                 :                :      * First a transaction may have started or not: skipped transactions occur
                                383                 :                :      * under --rate and --latency-limit when the client is too late to execute
                                384                 :                :      * them. Secondly, a started transaction may ultimately succeed or fail,
                                385                 :                :      * possibly after some retries when --max-tries is not one. Thus
                                386                 :                :      *
                                387                 :                :      * the number of all transactions =
                                388                 :                :      *   'skipped' (it was too late to execute them) +
                                389                 :                :      *   'cnt' (the number of successful transactions) +
                                390                 :                :      *   'failed' (the number of failed transactions).
                                391                 :                :      *
                                392                 :                :      * A successful transaction can have several unsuccessful tries before a
                                393                 :                :      * successful run. Thus
                                394                 :                :      *
                                395                 :                :      * 'cnt' (the number of successful transactions) =
                                396                 :                :      *   successfully retried transactions (they got a serialization or a
                                397                 :                :      *                                      deadlock error(s), but were
                                398                 :                :      *                                      successfully retried from the very
                                399                 :                :      *                                      beginning) +
                                400                 :                :      *   directly successful transactions (they were successfully completed on
                                401                 :                :      *                                     the first try).
                                402                 :                :      *
                                403                 :                :      * A failed transaction is defined as unsuccessfully retried transactions.
                                404                 :                :      * It can be one of two types:
                                405                 :                :      *
                                406                 :                :      * failed (the number of failed transactions) =
                                407                 :                :      *   'serialization_failures' (they got a serialization error and were not
                                408                 :                :      *                             successfully retried) +
                                409                 :                :      *   'deadlock_failures' (they got a deadlock error and were not
                                410                 :                :      *                        successfully retried).
                                411                 :                :      *
                                412                 :                :      * If the transaction was retried after a serialization or a deadlock
                                413                 :                :      * error this does not guarantee that this retry was successful. Thus
                                414                 :                :      *
                                415                 :                :      * 'retries' (number of retries) =
                                416                 :                :      *   number of retries in all retried transactions =
                                417                 :                :      *   number of retries in (successfully retried transactions +
                                418                 :                :      *                         failed transactions);
                                419                 :                :      *
                                420                 :                :      * 'retried' (number of all retried transactions) =
                                421                 :                :      *   successfully retried transactions +
                                422                 :                :      *   failed transactions.
                                423                 :                :      *----------
                                424                 :                :      */
                                425                 :                :     int64       cnt;            /* number of successful transactions, not
                                426                 :                :                                  * including 'skipped' */
                                427                 :                :     int64       skipped;        /* number of transactions skipped under --rate
                                428                 :                :                                  * and --latency-limit */
                                429                 :                :     int64       retries;        /* number of retries after a serialization or
                                430                 :                :                                  * a deadlock error in all the transactions */
                                431                 :                :     int64       retried;        /* number of all transactions that were
                                432                 :                :                                  * retried after a serialization or a deadlock
                                433                 :                :                                  * error (perhaps the last try was
                                434                 :                :                                  * unsuccessful) */
                                435                 :                :     int64       serialization_failures; /* number of transactions that were
                                436                 :                :                                          * not successfully retried after a
                                437                 :                :                                          * serialization error */
                                438                 :                :     int64       deadlock_failures;  /* number of transactions that were not
                                439                 :                :                                      * successfully retried after a deadlock
                                440                 :                :                                      * error */
                                441                 :                :     SimpleStats latency;
                                442                 :                :     SimpleStats lag;
                                443                 :                : } StatsData;
                                444                 :                : 
                                445                 :                : /*
                                446                 :                :  * For displaying Unix epoch timestamps, as some time functions may have
                                447                 :                :  * another reference.
                                448                 :                :  */
                                449                 :                : pg_time_usec_t epoch_shift;
                                450                 :                : 
                                451                 :                : /*
                                452                 :                :  * Error status for errors during script execution.
                                453                 :                :  */
                                454                 :                : typedef enum EStatus
                                455                 :                : {
                                456                 :                :     ESTATUS_NO_ERROR = 0,
                                457                 :                :     ESTATUS_META_COMMAND_ERROR,
                                458                 :                : 
                                459                 :                :     /* SQL errors */
                                460                 :                :     ESTATUS_SERIALIZATION_ERROR,
                                461                 :                :     ESTATUS_DEADLOCK_ERROR,
                                462                 :                :     ESTATUS_OTHER_SQL_ERROR,
                                463                 :                : } EStatus;
                                464                 :                : 
                                465                 :                : /*
                                466                 :                :  * Transaction status at the end of a command.
                                467                 :                :  */
                                468                 :                : typedef enum TStatus
                                469                 :                : {
                                470                 :                :     TSTATUS_IDLE,
                                471                 :                :     TSTATUS_IN_BLOCK,
                                472                 :                :     TSTATUS_CONN_ERROR,
                                473                 :                :     TSTATUS_OTHER_ERROR,
                                474                 :                : } TStatus;
                                475                 :                : 
                                476                 :                : /* Various random sequences are initialized from this one. */
                                477                 :                : static pg_prng_state base_random_sequence;
                                478                 :                : 
                                479                 :                : /* Synchronization barrier for start and connection */
                                480                 :                : static THREAD_BARRIER_T barrier;
                                481                 :                : 
                                482                 :                : /*
                                483                 :                :  * Connection state machine states.
                                484                 :                :  */
                                485                 :                : typedef enum
                                486                 :                : {
                                487                 :                :     /*
                                488                 :                :      * The client must first choose a script to execute.  Once chosen, it can
                                489                 :                :      * either be throttled (state CSTATE_PREPARE_THROTTLE under --rate), start
                                490                 :                :      * right away (state CSTATE_START_TX) or not start at all if the timer was
                                491                 :                :      * exceeded (state CSTATE_FINISHED).
                                492                 :                :      */
                                493                 :                :     CSTATE_CHOOSE_SCRIPT,
                                494                 :                : 
                                495                 :                :     /*
                                496                 :                :      * CSTATE_START_TX performs start-of-transaction processing.  Establishes
                                497                 :                :      * a new connection for the transaction in --connect mode, records the
                                498                 :                :      * transaction start time, and proceed to the first command.
                                499                 :                :      *
                                500                 :                :      * Note: once a script is started, it will either error or run till its
                                501                 :                :      * end, where it may be interrupted. It is not interrupted while running,
                                502                 :                :      * so pgbench --time is to be understood as tx are allowed to start in
                                503                 :                :      * that time, and will finish when their work is completed.
                                504                 :                :      */
                                505                 :                :     CSTATE_START_TX,
                                506                 :                : 
                                507                 :                :     /*
                                508                 :                :      * In CSTATE_PREPARE_THROTTLE state, we calculate when to begin the next
                                509                 :                :      * transaction, and advance to CSTATE_THROTTLE.  CSTATE_THROTTLE state
                                510                 :                :      * sleeps until that moment, then advances to CSTATE_START_TX, or
                                511                 :                :      * CSTATE_FINISHED if the next transaction would start beyond the end of
                                512                 :                :      * the run.
                                513                 :                :      */
                                514                 :                :     CSTATE_PREPARE_THROTTLE,
                                515                 :                :     CSTATE_THROTTLE,
                                516                 :                : 
                                517                 :                :     /*
                                518                 :                :      * We loop through these states, to process each command in the script:
                                519                 :                :      *
                                520                 :                :      * CSTATE_START_COMMAND starts the execution of a command.  On a SQL
                                521                 :                :      * command, the command is sent to the server, and we move to
                                522                 :                :      * CSTATE_WAIT_RESULT state unless in pipeline mode. On a \sleep
                                523                 :                :      * meta-command, the timer is set, and we enter the CSTATE_SLEEP state to
                                524                 :                :      * wait for it to expire. Other meta-commands are executed immediately. If
                                525                 :                :      * the command about to start is actually beyond the end of the script,
                                526                 :                :      * advance to CSTATE_END_TX.
                                527                 :                :      *
                                528                 :                :      * CSTATE_WAIT_RESULT waits until we get a result set back from the server
                                529                 :                :      * for the current command.
                                530                 :                :      *
                                531                 :                :      * CSTATE_SLEEP waits until the end of \sleep.
                                532                 :                :      *
                                533                 :                :      * CSTATE_END_COMMAND records the end-of-command timestamp, increments the
                                534                 :                :      * command counter, and loops back to CSTATE_START_COMMAND state.
                                535                 :                :      *
                                536                 :                :      * CSTATE_SKIP_COMMAND is used by conditional branches which are not
                                537                 :                :      * executed. It quickly skip commands that do not need any evaluation.
                                538                 :                :      * This state can move forward several commands, till there is something
                                539                 :                :      * to do or the end of the script.
                                540                 :                :      */
                                541                 :                :     CSTATE_START_COMMAND,
                                542                 :                :     CSTATE_WAIT_RESULT,
                                543                 :                :     CSTATE_SLEEP,
                                544                 :                :     CSTATE_END_COMMAND,
                                545                 :                :     CSTATE_SKIP_COMMAND,
                                546                 :                : 
                                547                 :                :     /*
                                548                 :                :      * States for failed commands.
                                549                 :                :      *
                                550                 :                :      * If the SQL/meta command fails, in CSTATE_ERROR clean up after an error:
                                551                 :                :      * (1) clear the conditional stack; (2) if we have an unterminated
                                552                 :                :      * (possibly failed) transaction block, send the rollback command to the
                                553                 :                :      * server and wait for the result in CSTATE_WAIT_ROLLBACK_RESULT.  If
                                554                 :                :      * something goes wrong with rolling back, go to CSTATE_ABORTED.
                                555                 :                :      *
                                556                 :                :      * But if everything is ok we are ready for future transactions: if this
                                557                 :                :      * is a serialization or deadlock error and we can re-execute the
                                558                 :                :      * transaction from the very beginning, go to CSTATE_RETRY; otherwise go
                                559                 :                :      * to CSTATE_FAILURE.
                                560                 :                :      *
                                561                 :                :      * In CSTATE_RETRY report an error, set the same parameters for the
                                562                 :                :      * transaction execution as in the previous tries and process the first
                                563                 :                :      * transaction command in CSTATE_START_COMMAND.
                                564                 :                :      *
                                565                 :                :      * In CSTATE_FAILURE report a failure, set the parameters for the
                                566                 :                :      * transaction execution as they were before the first run of this
                                567                 :                :      * transaction (except for a random state) and go to CSTATE_END_TX to
                                568                 :                :      * complete this transaction.
                                569                 :                :      */
                                570                 :                :     CSTATE_ERROR,
                                571                 :                :     CSTATE_WAIT_ROLLBACK_RESULT,
                                572                 :                :     CSTATE_RETRY,
                                573                 :                :     CSTATE_FAILURE,
                                574                 :                : 
                                575                 :                :     /*
                                576                 :                :      * CSTATE_END_TX performs end-of-transaction processing.  It calculates
                                577                 :                :      * latency, and logs the transaction.  In --connect mode, it closes the
                                578                 :                :      * current connection.
                                579                 :                :      *
                                580                 :                :      * Then either starts over in CSTATE_CHOOSE_SCRIPT, or enters
                                581                 :                :      * CSTATE_FINISHED if we have no more work to do.
                                582                 :                :      */
                                583                 :                :     CSTATE_END_TX,
                                584                 :                : 
                                585                 :                :     /*
                                586                 :                :      * Final states.  CSTATE_ABORTED means that the script execution was
                                587                 :                :      * aborted because a command failed, CSTATE_FINISHED means success.
                                588                 :                :      */
                                589                 :                :     CSTATE_ABORTED,
                                590                 :                :     CSTATE_FINISHED,
                                591                 :                : } ConnectionStateEnum;
                                592                 :                : 
                                593                 :                : /*
                                594                 :                :  * Connection state.
                                595                 :                :  */
                                596                 :                : typedef struct
                                597                 :                : {
                                598                 :                :     PGconn     *con;            /* connection handle to DB */
                                599                 :                :     int         id;             /* client No. */
                                600                 :                :     ConnectionStateEnum state;  /* state machine's current state. */
                                601                 :                :     ConditionalStack cstack;    /* enclosing conditionals state */
                                602                 :                : 
                                603                 :                :     /*
                                604                 :                :      * Separate randomness for each client. This is used for random functions
                                605                 :                :      * PGBENCH_RANDOM_* during the execution of the script.
                                606                 :                :      */
                                607                 :                :     pg_prng_state cs_func_rs;
                                608                 :                : 
                                609                 :                :     int         use_file;       /* index in sql_script for this client */
                                610                 :                :     int         command;        /* command number in script */
                                611                 :                :     int         num_syncs;      /* number of ongoing sync commands */
                                612                 :                : 
                                613                 :                :     /* client variables */
                                614                 :                :     Variables   variables;
                                615                 :                : 
                                616                 :                :     /* various times about current transaction in microseconds */
                                617                 :                :     pg_time_usec_t txn_scheduled;   /* scheduled start time of transaction */
                                618                 :                :     pg_time_usec_t sleep_until; /* scheduled start time of next cmd */
                                619                 :                :     pg_time_usec_t txn_begin;   /* used for measuring schedule lag times */
                                620                 :                :     pg_time_usec_t stmt_begin;  /* used for measuring statement latencies */
                                621                 :                : 
                                622                 :                :     /* whether client prepared each command of each script */
                                623                 :                :     bool      **prepared;
                                624                 :                : 
                                625                 :                :     /*
                                626                 :                :      * For processing failures and repeating transactions with serialization
                                627                 :                :      * or deadlock errors:
                                628                 :                :      */
                                629                 :                :     EStatus     estatus;        /* the error status of the current transaction
                                630                 :                :                                  * execution; this is ESTATUS_NO_ERROR if
                                631                 :                :                                  * there were no errors */
                                632                 :                :     pg_prng_state random_state; /* random state */
                                633                 :                :     uint32      tries;          /* how many times have we already tried the
                                634                 :                :                                  * current transaction? */
                                635                 :                : 
                                636                 :                :     /* per client collected stats */
                                637                 :                :     int64       cnt;            /* client transaction count, for -t; skipped
                                638                 :                :                                  * and failed transactions are also counted
                                639                 :                :                                  * here */
                                640                 :                : } CState;
                                641                 :                : 
                                642                 :                : /*
                                643                 :                :  * Thread state
                                644                 :                :  */
                                645                 :                : typedef struct
                                646                 :                : {
                                647                 :                :     int         tid;            /* thread id */
                                648                 :                :     THREAD_T    thread;         /* thread handle */
                                649                 :                :     CState     *state;          /* array of CState */
                                650                 :                :     int         nstate;         /* length of state[] */
                                651                 :                : 
                                652                 :                :     /*
                                653                 :                :      * Separate randomness for each thread. Each thread option uses its own
                                654                 :                :      * random state to make all of them independent of each other and
                                655                 :                :      * therefore deterministic at the thread level.
                                656                 :                :      */
                                657                 :                :     pg_prng_state ts_choose_rs; /* random state for selecting a script */
                                658                 :                :     pg_prng_state ts_throttle_rs;   /* random state for transaction throttling */
                                659                 :                :     pg_prng_state ts_sample_rs; /* random state for log sampling */
                                660                 :                : 
                                661                 :                :     int64       throttle_trigger;   /* previous/next throttling (us) */
                                662                 :                :     FILE       *logfile;        /* where to log, or NULL */
                                663                 :                : 
                                664                 :                :     /* per thread collected stats in microseconds */
                                665                 :                :     pg_time_usec_t create_time; /* thread creation time */
                                666                 :                :     pg_time_usec_t started_time;    /* thread is running */
                                667                 :                :     pg_time_usec_t bench_start; /* thread is benchmarking */
                                668                 :                :     pg_time_usec_t conn_duration;   /* cumulated connection and disconnection
                                669                 :                :                                      * delays */
                                670                 :                : 
                                671                 :                :     StatsData   stats;
                                672                 :                :     int64       latency_late;   /* count executed but late transactions */
                                673                 :                : } TState;
                                674                 :                : 
                                675                 :                : /*
                                676                 :                :  * queries read from files
                                677                 :                :  */
                                678                 :                : #define SQL_COMMAND     1
                                679                 :                : #define META_COMMAND    2
                                680                 :                : 
                                681                 :                : /*
                                682                 :                :  * max number of backslash command arguments or SQL variables,
                                683                 :                :  * including the command or SQL statement itself
                                684                 :                :  */
                                685                 :                : #define MAX_ARGS        256
                                686                 :                : 
                                687                 :                : typedef enum MetaCommand
                                688                 :                : {
                                689                 :                :     META_NONE,                  /* not a known meta-command */
                                690                 :                :     META_SET,                   /* \set */
                                691                 :                :     META_SETSHELL,              /* \setshell */
                                692                 :                :     META_SHELL,                 /* \shell */
                                693                 :                :     META_SLEEP,                 /* \sleep */
                                694                 :                :     META_GSET,                  /* \gset */
                                695                 :                :     META_ASET,                  /* \aset */
                                696                 :                :     META_IF,                    /* \if */
                                697                 :                :     META_ELIF,                  /* \elif */
                                698                 :                :     META_ELSE,                  /* \else */
                                699                 :                :     META_ENDIF,                 /* \endif */
                                700                 :                :     META_STARTPIPELINE,         /* \startpipeline */
                                701                 :                :     META_SYNCPIPELINE,          /* \syncpipeline */
                                702                 :                :     META_ENDPIPELINE,           /* \endpipeline */
                                703                 :                : } MetaCommand;
                                704                 :                : 
                                705                 :                : typedef enum QueryMode
                                706                 :                : {
                                707                 :                :     QUERY_SIMPLE,               /* simple query */
                                708                 :                :     QUERY_EXTENDED,             /* extended query */
                                709                 :                :     QUERY_PREPARED,             /* extended query with prepared statements */
                                710                 :                :     NUM_QUERYMODE
                                711                 :                : } QueryMode;
                                712                 :                : 
                                713                 :                : static QueryMode querymode = QUERY_SIMPLE;
                                714                 :                : static const char *const QUERYMODE[] = {"simple", "extended", "prepared"};
                                715                 :                : 
                                716                 :                : /*
                                717                 :                :  * struct Command represents one command in a script.
                                718                 :                :  *
                                719                 :                :  * lines        The raw, possibly multi-line command text.  Variable substitution
                                720                 :                :  *              not applied.
                                721                 :                :  * first_line   A short, single-line extract of 'lines', for error reporting.
                                722                 :                :  * type         SQL_COMMAND or META_COMMAND
                                723                 :                :  * meta         The type of meta-command, with META_NONE/GSET/ASET if command
                                724                 :                :  *              is SQL.
                                725                 :                :  * argc         Number of arguments of the command, 0 if not yet processed.
                                726                 :                :  * argv         Command arguments, the first of which is the command or SQL
                                727                 :                :  *              string itself.  For SQL commands, after post-processing
                                728                 :                :  *              argv[0] is the same as 'lines' with variables substituted.
                                729                 :                :  * prepname     The name that this command is prepared under, in prepare mode
                                730                 :                :  * varprefix    SQL commands terminated with \gset or \aset have this set
                                731                 :                :  *              to a non NULL value.  If nonempty, it's used to prefix the
                                732                 :                :  *              variable name that receives the value.
                                733                 :                :  * aset         do gset on all possible queries of a combined query (\;).
                                734                 :                :  * expr         Parsed expression, if needed.
                                735                 :                :  * stats        Time spent in this command.
                                736                 :                :  * retries      Number of retries after a serialization or deadlock error in the
                                737                 :                :  *              current command.
                                738                 :                :  * failures     Number of errors in the current command that were not retried.
                                739                 :                :  */
                                740                 :                : typedef struct Command
                                741                 :                : {
                                742                 :                :     PQExpBufferData lines;
                                743                 :                :     char       *first_line;
                                744                 :                :     int         type;
                                745                 :                :     MetaCommand meta;
                                746                 :                :     int         argc;
                                747                 :                :     char       *argv[MAX_ARGS];
                                748                 :                :     char       *prepname;
                                749                 :                :     char       *varprefix;
                                750                 :                :     PgBenchExpr *expr;
                                751                 :                :     SimpleStats stats;
                                752                 :                :     int64       retries;
                                753                 :                :     int64       failures;
                                754                 :                : } Command;
                                755                 :                : 
                                756                 :                : typedef struct ParsedScript
                                757                 :                : {
                                758                 :                :     const char *desc;           /* script descriptor (eg, file name) */
                                759                 :                :     int         weight;         /* selection weight */
                                760                 :                :     Command   **commands;       /* NULL-terminated array of Commands */
                                761                 :                :     StatsData   stats;          /* total time spent in script */
                                762                 :                : } ParsedScript;
                                763                 :                : 
                                764                 :                : static ParsedScript sql_script[MAX_SCRIPTS];    /* SQL script files */
                                765                 :                : static int  num_scripts;        /* number of scripts in sql_script[] */
                                766                 :                : static int64 total_weight = 0;
                                767                 :                : 
                                768                 :                : static bool verbose_errors = false; /* print verbose messages of all errors */
                                769                 :                : 
                                770                 :                : static bool exit_on_abort = false;  /* exit when any client is aborted */
                                771                 :                : 
                                772                 :                : /* Builtin test scripts */
                                773                 :                : typedef struct BuiltinScript
                                774                 :                : {
                                775                 :                :     const char *name;           /* very short name for -b ... */
                                776                 :                :     const char *desc;           /* short description */
                                777                 :                :     const char *script;         /* actual pgbench script */
                                778                 :                : } BuiltinScript;
                                779                 :                : 
                                780                 :                : static const BuiltinScript builtin_script[] =
                                781                 :                : {
                                782                 :                :     {
                                783                 :                :         "tpcb-like",
                                784                 :                :         "<builtin: TPC-B (sort of)>",
                                785                 :                :         "\\set aid random(1, " CppAsString2(naccounts) " * :scale)\n"
                                786                 :                :         "\\set bid random(1, " CppAsString2(nbranches) " * :scale)\n"
                                787                 :                :         "\\set tid random(1, " CppAsString2(ntellers) " * :scale)\n"
                                788                 :                :         "\\set delta random(-5000, 5000)\n"
                                789                 :                :         "BEGIN;\n"
                                790                 :                :         "UPDATE pgbench_accounts SET abalance = abalance + :delta WHERE aid = :aid;\n"
                                791                 :                :         "SELECT abalance FROM pgbench_accounts WHERE aid = :aid;\n"
                                792                 :                :         "UPDATE pgbench_tellers SET tbalance = tbalance + :delta WHERE tid = :tid;\n"
                                793                 :                :         "UPDATE pgbench_branches SET bbalance = bbalance + :delta WHERE bid = :bid;\n"
                                794                 :                :         "INSERT INTO pgbench_history (tid, bid, aid, delta, mtime) VALUES (:tid, :bid, :aid, :delta, CURRENT_TIMESTAMP);\n"
                                795                 :                :         "END;\n"
                                796                 :                :     },
                                797                 :                :     {
                                798                 :                :         "simple-update",
                                799                 :                :         "<builtin: simple update>",
                                800                 :                :         "\\set aid random(1, " CppAsString2(naccounts) " * :scale)\n"
                                801                 :                :         "\\set bid random(1, " CppAsString2(nbranches) " * :scale)\n"
                                802                 :                :         "\\set tid random(1, " CppAsString2(ntellers) " * :scale)\n"
                                803                 :                :         "\\set delta random(-5000, 5000)\n"
                                804                 :                :         "BEGIN;\n"
                                805                 :                :         "UPDATE pgbench_accounts SET abalance = abalance + :delta WHERE aid = :aid;\n"
                                806                 :                :         "SELECT abalance FROM pgbench_accounts WHERE aid = :aid;\n"
                                807                 :                :         "INSERT INTO pgbench_history (tid, bid, aid, delta, mtime) VALUES (:tid, :bid, :aid, :delta, CURRENT_TIMESTAMP);\n"
                                808                 :                :         "END;\n"
                                809                 :                :     },
                                810                 :                :     {
                                811                 :                :         "select-only",
                                812                 :                :         "<builtin: select only>",
                                813                 :                :         "\\set aid random(1, " CppAsString2(naccounts) " * :scale)\n"
                                814                 :                :         "SELECT abalance FROM pgbench_accounts WHERE aid = :aid;\n"
                                815                 :                :     }
                                816                 :                : };
                                817                 :                : 
                                818                 :                : 
                                819                 :                : /* Function prototypes */
                                820                 :                : static void setNullValue(PgBenchValue *pv);
                                821                 :                : static void setBoolValue(PgBenchValue *pv, bool bval);
                                822                 :                : static void setIntValue(PgBenchValue *pv, int64 ival);
                                823                 :                : static void setDoubleValue(PgBenchValue *pv, double dval);
                                824                 :                : static bool evaluateExpr(CState *st, PgBenchExpr *expr,
                                825                 :                :                          PgBenchValue *retval);
                                826                 :                : static ConnectionStateEnum executeMetaCommand(CState *st, pg_time_usec_t *now);
                                827                 :                : static void doLog(TState *thread, CState *st,
                                828                 :                :                   StatsData *agg, bool skipped, double latency, double lag);
                                829                 :                : static void processXactStats(TState *thread, CState *st, pg_time_usec_t *now,
                                830                 :                :                              bool skipped, StatsData *agg);
                                831                 :                : static void addScript(const ParsedScript *script);
                                832                 :                : static THREAD_FUNC_RETURN_TYPE THREAD_FUNC_CC threadRun(void *arg);
                                833                 :                : static void finishCon(CState *st);
                                834                 :                : static void setalarm(int seconds);
                                835                 :                : static socket_set *alloc_socket_set(int count);
                                836                 :                : static void free_socket_set(socket_set *sa);
                                837                 :                : static void clear_socket_set(socket_set *sa);
                                838                 :                : static void add_socket_to_set(socket_set *sa, int fd, int idx);
                                839                 :                : static int  wait_on_socket_set(socket_set *sa, int64 usecs);
                                840                 :                : static bool socket_has_input(socket_set *sa, int fd, int idx);
                                841                 :                : 
                                842                 :                : /* callback used to build rows for COPY during data loading */
                                843                 :                : typedef void (*initRowMethod) (PQExpBufferData *sql, int64 curr);
                                844                 :                : 
                                845                 :                : /* callback functions for our flex lexer */
                                846                 :                : static const PsqlScanCallbacks pgbench_callbacks = {
                                847                 :                :     NULL,                       /* don't need get_variable functionality */
                                848                 :                : };
                                849                 :                : 
                                850                 :                : static inline pg_time_usec_t
 1131 tmunro@postgresql.or      851                 :CBC       11282 : pg_time_now(void)
                                852                 :                : {
                                853                 :                :     instr_time  now;
                                854                 :                : 
                                855                 :          11282 :     INSTR_TIME_SET_CURRENT(now);
                                856                 :                : 
                                857                 :          11282 :     return (pg_time_usec_t) INSTR_TIME_GET_MICROSEC(now);
                                858                 :                : }
                                859                 :                : 
                                860                 :                : static inline void
                                861                 :          10232 : pg_time_now_lazy(pg_time_usec_t *now)
                                862                 :                : {
                                863         [ +  + ]:          10232 :     if ((*now) == 0)
                                864                 :           9210 :         (*now) = pg_time_now();
                                865                 :          10232 : }
                                866                 :                : 
                                867                 :                : #define PG_TIME_GET_DOUBLE(t) (0.000001 * (t))
                                868                 :                : 
                                869                 :                : static void
 4302 rhaas@postgresql.org      870                 :              1 : usage(void)
                                871                 :                : {
 5525 peter_e@gmx.net           872                 :              1 :     printf("%s is a benchmarking tool for PostgreSQL.\n\n"
                                873                 :                :            "Usage:\n"
                                874                 :                :            "  %s [OPTION]... [DBNAME]\n"
                                875                 :                :            "\nInitialization options:\n"
                                876                 :                :            "  -i, --initialize         invokes initialization mode\n"
                                877                 :                :            "  -I, --init-steps=[" ALL_INIT_STEPS "]+ (default \"" DEFAULT_INIT_STEPS "\")\n"
                                878                 :                :            "                           run selected initialization steps, in the specified order\n"
                                879                 :                :            "                           d: drop any existing pgbench tables\n"
                                880                 :                :            "                           t: create the tables used by the standard pgbench scenario\n"
                                881                 :                :            "                           g: generate data, client-side\n"
                                882                 :                :            "                           G: generate data, server-side\n"
                                883                 :                :            "                           v: invoke VACUUM on the standard tables\n"
                                884                 :                :            "                           p: create primary key indexes on the standard tables\n"
                                885                 :                :            "                           f: create foreign keys between the standard tables\n"
                                886                 :                :            "  -F, --fillfactor=NUM     set fill factor\n"
                                887                 :                :            "  -n, --no-vacuum          do not run VACUUM during initialization\n"
                                888                 :                :            "  -q, --quiet              quiet logging (one message each 5 seconds)\n"
                                889                 :                :            "  -s, --scale=NUM          scaling factor\n"
                                890                 :                :            "  --foreign-keys           create foreign key constraints between tables\n"
                                891                 :                :            "  --index-tablespace=TABLESPACE\n"
                                892                 :                :            "                           create indexes in the specified tablespace\n"
                                893                 :                :            "  --partition-method=(range|hash)\n"
                                894                 :                :            "                           partition pgbench_accounts with this method (default: range)\n"
                                895                 :                :            "  --partitions=NUM         partition pgbench_accounts into NUM parts (default: 0)\n"
                                896                 :                :            "  --tablespace=TABLESPACE  create tables in the specified tablespace\n"
                                897                 :                :            "  --unlogged-tables        create tables as unlogged tables\n"
                                898                 :                :            "\nOptions to select what to run:\n"
                                899                 :                :            "  -b, --builtin=NAME[@W]   add builtin script NAME weighted at W (default: 1)\n"
                                900                 :                :            "                           (use \"-b list\" to list available scripts)\n"
                                901                 :                :            "  -f, --file=FILENAME[@W]  add script FILENAME weighted at W (default: 1)\n"
                                902                 :                :            "  -N, --skip-some-updates  skip updates of pgbench_tellers and pgbench_branches\n"
                                903                 :                :            "                           (same as \"-b simple-update\")\n"
                                904                 :                :            "  -S, --select-only        perform SELECT-only transactions\n"
                                905                 :                :            "                           (same as \"-b select-only\")\n"
                                906                 :                :            "\nBenchmarking options:\n"
                                907                 :                :            "  -c, --client=NUM         number of concurrent database clients (default: 1)\n"
                                908                 :                :            "  -C, --connect            establish new connection for each transaction\n"
                                909                 :                :            "  -D, --define=VARNAME=VALUE\n"
                                910                 :                :            "                           define variable for use by custom script\n"
                                911                 :                :            "  -j, --jobs=NUM           number of threads (default: 1)\n"
                                912                 :                :            "  -l, --log                write transaction times to log file\n"
                                913                 :                :            "  -L, --latency-limit=NUM  count transactions lasting more than NUM ms as late\n"
                                914                 :                :            "  -M, --protocol=simple|extended|prepared\n"
                                915                 :                :            "                           protocol for submitting queries (default: simple)\n"
                                916                 :                :            "  -n, --no-vacuum          do not run VACUUM before tests\n"
                                917                 :                :            "  -P, --progress=NUM       show thread progress report every NUM seconds\n"
                                918                 :                :            "  -r, --report-per-command report latencies, failures, and retries per command\n"
                                919                 :                :            "  -R, --rate=NUM           target rate in transactions per second\n"
                                920                 :                :            "  -s, --scale=NUM          report this scale factor in output\n"
                                921                 :                :            "  -t, --transactions=NUM   number of transactions each client runs (default: 10)\n"
                                922                 :                :            "  -T, --time=NUM           duration of benchmark test in seconds\n"
                                923                 :                :            "  -v, --vacuum-all         vacuum all four standard tables before tests\n"
                                924                 :                :            "  --aggregate-interval=NUM aggregate data over NUM seconds\n"
                                925                 :                :            "  --exit-on-abort          exit when any client is aborted\n"
                                926                 :                :            "  --failures-detailed      report the failures grouped by basic types\n"
                                927                 :                :            "  --log-prefix=PREFIX      prefix for transaction time log file\n"
                                928                 :                :            "                           (default: \"pgbench_log\")\n"
                                929                 :                :            "  --max-tries=NUM          max number of tries to run transaction (default: 1)\n"
                                930                 :                :            "  --progress-timestamp     use Unix epoch timestamps for progress\n"
                                931                 :                :            "  --random-seed=SEED       set random seed (\"time\", \"rand\", integer)\n"
                                932                 :                :            "  --sampling-rate=NUM      fraction of transactions to log (e.g., 0.01 for 1%%)\n"
                                933                 :                :            "  --show-script=NAME       show builtin script code, then exit\n"
                                934                 :                :            "  --verbose-errors         print messages of all errors\n"
                                935                 :                :            "\nCommon options:\n"
                                936                 :                :            "  --debug                  print debugging output\n"
                                937                 :                :            "  -d, --dbname=DBNAME      database name to connect to\n"
                                938                 :                :            "  -h, --host=HOSTNAME      database server host or socket directory\n"
                                939                 :                :            "  -p, --port=PORT          database server port number\n"
                                940                 :                :            "  -U, --username=USERNAME  connect as specified database user\n"
                                941                 :                :            "  -V, --version            output version information, then exit\n"
                                942                 :                :            "  -?, --help               show this help, then exit\n"
                                943                 :                :            "\n"
                                944                 :                :            "Report bugs to <%s>.\n"
                                945                 :                :            "%s home page: <%s>\n",
                                946                 :                :            progname, progname, PACKAGE_BUGREPORT, PACKAGE_NAME, PACKAGE_URL);
 8856 ishii@postgresql.org      947                 :              1 : }
                                948                 :                : 
                                949                 :                : /* return whether str matches "^\s*[-+]?[0-9]+$" */
                                950                 :                : static bool
 2939 rhaas@postgresql.org      951                 :            430 : is_an_int(const char *str)
                                952                 :                : {
                                953                 :            430 :     const char *ptr = str;
                                954                 :                : 
                                955                 :                :     /* skip leading spaces; cast is consistent with strtoint64 */
                                956   [ +  -  -  + ]:            430 :     while (*ptr && isspace((unsigned char) *ptr))
 2939 rhaas@postgresql.org      957                 :UBC           0 :         ptr++;
                                958                 :                : 
                                959                 :                :     /* skip sign */
 2939 rhaas@postgresql.org      960   [ +  -  +  + ]:CBC         430 :     if (*ptr == '+' || *ptr == '-')
                                961                 :              3 :         ptr++;
                                962                 :                : 
                                963                 :                :     /* at least one digit */
                                964   [ +  -  +  + ]:            430 :     if (*ptr && !isdigit((unsigned char) *ptr))
                                965                 :              2 :         return false;
                                966                 :                : 
                                967                 :                :     /* eat all digits */
                                968   [ +  +  +  + ]:            911 :     while (*ptr && isdigit((unsigned char) *ptr))
                                969                 :            483 :         ptr++;
                                970                 :                : 
                                971                 :                :     /* must have reached end of string */
                                972                 :            428 :     return *ptr == '\0';
                                973                 :                : }
                                974                 :                : 
                                975                 :                : 
                                976                 :                : /*
                                977                 :                :  * strtoint64 -- convert a string to 64-bit integer
                                978                 :                :  *
                                979                 :                :  * This function is a slightly modified version of pg_strtoint64() from
                                980                 :                :  * src/backend/utils/adt/numutils.c.
                                981                 :                :  *
                                982                 :                :  * The function returns whether the conversion worked, and if so
                                983                 :                :  * "*result" is set to the result.
                                984                 :                :  *
                                985                 :                :  * If not errorOK, an error message is also printed out on errors.
                                986                 :                :  */
                                987                 :                : bool
 2026 andres@anarazel.de        988                 :           1224 : strtoint64(const char *str, bool errorOK, int64 *result)
                                989                 :                : {
 4093 heikki.linnakangas@i      990                 :           1224 :     const char *ptr = str;
 2026 andres@anarazel.de        991                 :           1224 :     int64       tmp = 0;
                                992                 :           1224 :     bool        neg = false;
                                993                 :                : 
                                994                 :                :     /*
                                995                 :                :      * Do our own scan, rather than relying on sscanf which might be broken
                                996                 :                :      * for long long.
                                997                 :                :      *
                                998                 :                :      * As INT64_MIN can't be stored as a positive 64 bit integer, accumulate
                                999                 :                :      * value as a negative number.
                               1000                 :                :      */
                               1001                 :                : 
                               1002                 :                :     /* skip leading spaces */
 4093 heikki.linnakangas@i     1003   [ +  -  -  + ]:           1224 :     while (*ptr && isspace((unsigned char) *ptr))
 4093 heikki.linnakangas@i     1004                 :UBC           0 :         ptr++;
                               1005                 :                : 
                               1006                 :                :     /* handle sign */
 4093 heikki.linnakangas@i     1007         [ +  + ]:CBC        1224 :     if (*ptr == '-')
                               1008                 :                :     {
                               1009                 :              2 :         ptr++;
 2026 andres@anarazel.de       1010                 :              2 :         neg = true;
                               1011                 :                :     }
 4093 heikki.linnakangas@i     1012         [ -  + ]:           1222 :     else if (*ptr == '+')
 4093 heikki.linnakangas@i     1013                 :UBC           0 :         ptr++;
                               1014                 :                : 
                               1015                 :                :     /* require at least one digit */
 2026 andres@anarazel.de       1016         [ -  + ]:CBC        1224 :     if (unlikely(!isdigit((unsigned char) *ptr)))
 2026 andres@anarazel.de       1017                 :UBC           0 :         goto invalid_syntax;
                               1018                 :                : 
                               1019                 :                :     /* process digits */
 4093 heikki.linnakangas@i     1020   [ +  +  +  - ]:CBC        3751 :     while (*ptr && isdigit((unsigned char) *ptr))
                               1021                 :                :     {
 2026 andres@anarazel.de       1022                 :           2528 :         int8        digit = (*ptr++ - '0');
                               1023                 :                : 
                               1024         [ +  + ]:           2528 :         if (unlikely(pg_mul_s64_overflow(tmp, 10, &tmp)) ||
                               1025         [ -  + ]:           2527 :             unlikely(pg_sub_s64_overflow(tmp, digit, &tmp)))
                               1026                 :              1 :             goto out_of_range;
                               1027                 :                :     }
                               1028                 :                : 
                               1029                 :                :     /* allow trailing whitespace, but not other trailing chars */
 4093 heikki.linnakangas@i     1030   [ -  +  -  - ]:           1223 :     while (*ptr != '\0' && isspace((unsigned char) *ptr))
 4093 heikki.linnakangas@i     1031                 :UBC           0 :         ptr++;
                               1032                 :                : 
 2026 andres@anarazel.de       1033         [ -  + ]:CBC        1223 :     if (unlikely(*ptr != '\0'))
 2026 andres@anarazel.de       1034                 :UBC           0 :         goto invalid_syntax;
                               1035                 :                : 
 2026 andres@anarazel.de       1036         [ +  + ]:CBC        1223 :     if (!neg)
                               1037                 :                :     {
                               1038         [ -  + ]:           1221 :         if (unlikely(tmp == PG_INT64_MIN))
 2026 andres@anarazel.de       1039                 :UBC           0 :             goto out_of_range;
 2026 andres@anarazel.de       1040                 :CBC        1221 :         tmp = -tmp;
                               1041                 :                :     }
                               1042                 :                : 
                               1043                 :           1223 :     *result = tmp;
                               1044                 :           1223 :     return true;
                               1045                 :                : 
                               1046                 :              1 : out_of_range:
                               1047         [ -  + ]:              1 :     if (!errorOK)
 1558 peter@eisentraut.org     1048                 :UBC           0 :         pg_log_error("value \"%s\" is out of range for type bigint", str);
 2026 andres@anarazel.de       1049                 :CBC           1 :     return false;
                               1050                 :                : 
 2026 andres@anarazel.de       1051                 :UBC           0 : invalid_syntax:
                               1052         [ #  # ]:              0 :     if (!errorOK)
 1558 peter@eisentraut.org     1053                 :              0 :         pg_log_error("invalid input syntax for type bigint: \"%s\"", str);
 2026 andres@anarazel.de       1054                 :              0 :     return false;
                               1055                 :                : }
                               1056                 :                : 
                               1057                 :                : /* convert string to double, detecting overflows/underflows */
                               1058                 :                : bool
 2026 andres@anarazel.de       1059                 :CBC          66 : strtodouble(const char *str, bool errorOK, double *dv)
                               1060                 :                : {
                               1061                 :                :     char       *end;
                               1062                 :                : 
                               1063                 :             66 :     errno = 0;
                               1064                 :             66 :     *dv = strtod(str, &end);
                               1065                 :                : 
                               1066         [ +  + ]:             66 :     if (unlikely(errno != 0))
                               1067                 :                :     {
                               1068         [ -  + ]:              2 :         if (!errorOK)
 1558 peter@eisentraut.org     1069                 :UBC           0 :             pg_log_error("value \"%s\" is out of range for type double", str);
 2026 andres@anarazel.de       1070                 :CBC           2 :         return false;
                               1071                 :                :     }
                               1072                 :                : 
                               1073   [ +  +  -  +  :             64 :     if (unlikely(end == str || *end != '\0'))
                                              +  + ]
                               1074                 :                :     {
                               1075         [ -  + ]:              2 :         if (!errorOK)
 1558 peter@eisentraut.org     1076                 :UBC           0 :             pg_log_error("invalid input syntax for type double: \"%s\"", str);
 2026 andres@anarazel.de       1077                 :CBC           2 :         return false;
                               1078                 :                :     }
                               1079                 :             62 :     return true;
                               1080                 :                : }
                               1081                 :                : 
                               1082                 :                : /*
                               1083                 :                :  * Initialize a prng state struct.
                               1084                 :                :  *
                               1085                 :                :  * We derive the seed from base_random_sequence, which must be set up already.
                               1086                 :                :  */
                               1087                 :                : static void
  868 tgl@sss.pgh.pa.us        1088                 :            337 : initRandomState(pg_prng_state *state)
                               1089                 :                : {
                               1090                 :            337 :     pg_prng_seed(state, pg_prng_uint64(&base_random_sequence));
 1976 alvherre@alvh.no-ip.     1091                 :            337 : }
                               1092                 :                : 
                               1093                 :                : 
                               1094                 :                : /*
                               1095                 :                :  * random number generator: uniform distribution from min to max inclusive.
                               1096                 :                :  *
                               1097                 :                :  * Although the limits are expressed as int64, you can't generate the full
                               1098                 :                :  * int64 range in one call, because the difference of the limits mustn't
                               1099                 :                :  * overflow int64.  This is not checked.
                               1100                 :                :  */
                               1101                 :                : static int64
  868 tgl@sss.pgh.pa.us        1102                 :           2623 : getrand(pg_prng_state *state, int64 min, int64 max)
                               1103                 :                : {
                               1104                 :           2623 :     return min + (int64) pg_prng_uint64_range(state, 0, max - min);
                               1105                 :                : }
                               1106                 :                : 
                               1107                 :                : /*
                               1108                 :                :  * random number generator: exponential distribution from min to max inclusive.
                               1109                 :                :  * the parameter is so that the density of probability for the last cut-off max
                               1110                 :                :  * value is exp(-parameter).
                               1111                 :                :  */
                               1112                 :                : static int64
                               1113                 :              3 : getExponentialRand(pg_prng_state *state, int64 min, int64 max,
                               1114                 :                :                    double parameter)
                               1115                 :                : {
                               1116                 :                :     double      cut,
                               1117                 :                :                 uniform,
                               1118                 :                :                 rand;
                               1119                 :                : 
                               1120                 :                :     /* abort if wrong parameter, but must really be checked beforehand */
 3040 rhaas@postgresql.org     1121         [ -  + ]:              3 :     Assert(parameter > 0.0);
                               1122                 :              3 :     cut = exp(-parameter);
                               1123                 :                :     /* pg_prng_double value in [0, 1), uniform in (0, 1] */
  868 tgl@sss.pgh.pa.us        1124                 :              3 :     uniform = 1.0 - pg_prng_double(state);
                               1125                 :                : 
                               1126                 :                :     /*
                               1127                 :                :      * inner expression in (cut, 1] (if parameter > 0), rand in [0, 1)
                               1128                 :                :      */
 3546 rhaas@postgresql.org     1129         [ -  + ]:              3 :     Assert((1.0 - cut) != 0.0);
 3040                          1130                 :              3 :     rand = -log(cut + (1.0 - cut) * uniform) / parameter;
                               1131                 :                :     /* return int64 random number within between min and max */
 3249 bruce@momjian.us         1132                 :              3 :     return min + (int64) ((max - min + 1) * rand);
                               1133                 :                : }
                               1134                 :                : 
                               1135                 :                : /* random number generator: gaussian distribution from min to max inclusive */
                               1136                 :                : static int64
  868 tgl@sss.pgh.pa.us        1137                 :              3 : getGaussianRand(pg_prng_state *state, int64 min, int64 max,
                               1138                 :                :                 double parameter)
                               1139                 :                : {
                               1140                 :                :     double      stdev;
                               1141                 :                :     double      rand;
                               1142                 :                : 
                               1143                 :                :     /* abort if parameter is too low, but must really be checked beforehand */
 2939 rhaas@postgresql.org     1144         [ +  - ]:              3 :     Assert(parameter >= MIN_GAUSSIAN_PARAM);
                               1145                 :                : 
                               1146                 :                :     /*
                               1147                 :                :      * Get normally-distributed random number in the range -parameter <= stdev
                               1148                 :                :      * < parameter.
                               1149                 :                :      *
                               1150                 :                :      * This loop is executed until the number is in the expected range.
                               1151                 :                :      *
                               1152                 :                :      * As the minimum parameter is 2.0, the probability of looping is low:
                               1153                 :                :      * sqrt(-2 ln(r)) <= 2 => r >= e^{-2} ~ 0.135, then when taking the
                               1154                 :                :      * average sinus multiplier as 2/pi, we have a 8.6% looping probability in
                               1155                 :                :      * the worst case. For a parameter value of 5.0, the looping probability
                               1156                 :                :      * is about e^{-5} * 2 / pi ~ 0.43%.
                               1157                 :                :      */
                               1158                 :                :     do
                               1159                 :                :     {
  461 tgl@sss.pgh.pa.us        1160                 :              3 :         stdev = pg_prng_double_normal(state);
                               1161                 :                :     }
 3040 rhaas@postgresql.org     1162   [ -  +  -  + ]:              3 :     while (stdev < -parameter || stdev >= parameter);
                               1163                 :                : 
                               1164                 :                :     /* stdev is in [-parameter, parameter), normalization to [0,1) */
                               1165                 :              3 :     rand = (stdev + parameter) / (parameter * 2.0);
                               1166                 :                : 
                               1167                 :                :     /* return int64 random number within between min and max */
 3249 bruce@momjian.us         1168                 :              3 :     return min + (int64) ((max - min + 1) * rand);
                               1169                 :                : }
                               1170                 :                : 
                               1171                 :                : /*
                               1172                 :                :  * random number generator: generate a value, such that the series of values
                               1173                 :                :  * will approximate a Poisson distribution centered on the given value.
                               1174                 :                :  *
                               1175                 :                :  * Individual results are rounded to integers, though the center value need
                               1176                 :                :  * not be one.
                               1177                 :                :  */
                               1178                 :                : static int64
  868 tgl@sss.pgh.pa.us        1179                 :            210 : getPoissonRand(pg_prng_state *state, double center)
                               1180                 :                : {
                               1181                 :                :     /*
                               1182                 :                :      * Use inverse transform sampling to generate a value > 0, such that the
                               1183                 :                :      * expected (i.e. average) value is the given argument.
                               1184                 :                :      */
                               1185                 :                :     double      uniform;
                               1186                 :                : 
                               1187                 :                :     /* pg_prng_double value in [0, 1), uniform in (0, 1] */
                               1188                 :            210 :     uniform = 1.0 - pg_prng_double(state);
                               1189                 :                : 
 2028                          1190                 :            210 :     return (int64) (-log(uniform) * center + 0.5);
                               1191                 :                : }
                               1192                 :                : 
                               1193                 :                : /*
                               1194                 :                :  * Computing zipfian using rejection method, based on
                               1195                 :                :  * "Non-Uniform Random Variate Generation",
                               1196                 :                :  * Luc Devroye, p. 550-551, Springer 1986.
                               1197                 :                :  *
                               1198                 :                :  * This works for s > 1.0, but may perform badly for s very close to 1.0.
                               1199                 :                :  */
                               1200                 :                : static int64
  868                          1201                 :              3 : computeIterativeZipfian(pg_prng_state *state, int64 n, double s)
                               1202                 :                : {
 2313 teodor@sigaev.ru         1203                 :              3 :     double      b = pow(2.0, s - 1.0);
                               1204                 :                :     double      x,
                               1205                 :                :                 t,
                               1206                 :                :                 u,
                               1207                 :                :                 v;
                               1208                 :                : 
                               1209                 :                :     /* Ensure n is sane */
 1840 tgl@sss.pgh.pa.us        1210         [ -  + ]:              3 :     if (n <= 1)
 1840 tgl@sss.pgh.pa.us        1211                 :UBC           0 :         return 1;
                               1212                 :                : 
                               1213                 :                :     while (true)
                               1214                 :                :     {
                               1215                 :                :         /* random variates */
  868                          1216                 :              0 :         u = pg_prng_double(state);
  868 tgl@sss.pgh.pa.us        1217                 :CBC           3 :         v = pg_prng_double(state);
                               1218                 :                : 
 2313 teodor@sigaev.ru         1219                 :              3 :         x = floor(pow(u, -1.0 / (s - 1.0)));
                               1220                 :                : 
                               1221                 :              3 :         t = pow(1.0 + 1.0 / x, s - 1.0);
                               1222                 :                :         /* reject if too large or out of bound */
                               1223   [ +  -  +  - ]:              3 :         if (v * x * (t - 1.0) / (b - 1.0) <= t / b && x <= n)
                               1224                 :              3 :             break;
                               1225                 :                :     }
                               1226                 :              3 :     return (int64) x;
                               1227                 :                : }
                               1228                 :                : 
                               1229                 :                : /* random number generator: zipfian distribution from min to max inclusive */
                               1230                 :                : static int64
  868 tgl@sss.pgh.pa.us        1231                 :              3 : getZipfianRand(pg_prng_state *state, int64 min, int64 max, double s)
                               1232                 :                : {
 2313 teodor@sigaev.ru         1233                 :              3 :     int64       n = max - min + 1;
                               1234                 :                : 
                               1235                 :                :     /* abort if parameter is invalid */
 1840 tgl@sss.pgh.pa.us        1236   [ +  -  +  - ]:              3 :     Assert(MIN_ZIPFIAN_PARAM <= s && s <= MAX_ZIPFIAN_PARAM);
                               1237                 :                : 
  868                          1238                 :              3 :     return min - 1 + computeIterativeZipfian(state, n, s);
                               1239                 :                : }
                               1240                 :                : 
                               1241                 :                : /*
                               1242                 :                :  * FNV-1a hash function
                               1243                 :                :  */
                               1244                 :                : static int64
 2216 teodor@sigaev.ru         1245                 :              1 : getHashFnv1a(int64 val, uint64 seed)
                               1246                 :                : {
                               1247                 :                :     int64       result;
                               1248                 :                :     int         i;
                               1249                 :                : 
                               1250                 :              1 :     result = FNV_OFFSET_BASIS ^ seed;
                               1251         [ +  + ]:              9 :     for (i = 0; i < 8; ++i)
                               1252                 :                :     {
 2180 tgl@sss.pgh.pa.us        1253                 :              8 :         int32       octet = val & 0xff;
                               1254                 :                : 
 2216 teodor@sigaev.ru         1255                 :              8 :         val = val >> 8;
                               1256                 :              8 :         result = result ^ octet;
                               1257                 :              8 :         result = result * FNV_PRIME;
                               1258                 :                :     }
                               1259                 :                : 
                               1260                 :              1 :     return result;
                               1261                 :                : }
                               1262                 :                : 
                               1263                 :                : /*
                               1264                 :                :  * Murmur2 hash function
                               1265                 :                :  *
                               1266                 :                :  * Based on original work of Austin Appleby
                               1267                 :                :  * https://github.com/aappleby/smhasher/blob/master/src/MurmurHash2.cpp
                               1268                 :                :  */
                               1269                 :                : static int64
                               1270                 :              5 : getHashMurmur2(int64 val, uint64 seed)
                               1271                 :                : {
 2175 tgl@sss.pgh.pa.us        1272                 :              5 :     uint64      result = seed ^ MM2_MUL_TIMES_8;    /* sizeof(int64) */
 2180                          1273                 :              5 :     uint64      k = (uint64) val;
                               1274                 :                : 
 2216 teodor@sigaev.ru         1275                 :              5 :     k *= MM2_MUL;
                               1276                 :              5 :     k ^= k >> MM2_ROT;
                               1277                 :              5 :     k *= MM2_MUL;
                               1278                 :                : 
                               1279                 :              5 :     result ^= k;
                               1280                 :              5 :     result *= MM2_MUL;
                               1281                 :                : 
                               1282                 :              5 :     result ^= result >> MM2_ROT;
                               1283                 :              5 :     result *= MM2_MUL;
                               1284                 :              5 :     result ^= result >> MM2_ROT;
                               1285                 :                : 
                               1286                 :              5 :     return (int64) result;
                               1287                 :                : }
                               1288                 :                : 
                               1289                 :                : /*
                               1290                 :                :  * Pseudorandom permutation function
                               1291                 :                :  *
                               1292                 :                :  * For small sizes, this generates each of the (size!) possible permutations
                               1293                 :                :  * of integers in the range [0, size) with roughly equal probability.  Once
                               1294                 :                :  * the size is larger than 20, the number of possible permutations exceeds the
                               1295                 :                :  * number of distinct states of the internal pseudorandom number generator,
                               1296                 :                :  * and so not all possible permutations can be generated, but the permutations
                               1297                 :                :  * chosen should continue to give the appearance of being random.
                               1298                 :                :  *
                               1299                 :                :  * THIS FUNCTION IS NOT CRYPTOGRAPHICALLY SECURE.
                               1300                 :                :  * DO NOT USE FOR SUCH PURPOSE.
                               1301                 :                :  */
                               1302                 :                : static int64
 1104 dean.a.rasheed@gmail     1303                 :             45 : permute(const int64 val, const int64 isize, const int64 seed)
                               1304                 :                : {
                               1305                 :                :     /* using a high-end PRNG is probably overkill */
                               1306                 :                :     pg_prng_state state;
                               1307                 :                :     uint64      size;
                               1308                 :                :     uint64      v;
                               1309                 :                :     int         masklen;
                               1310                 :                :     uint64      mask;
                               1311                 :                :     int         i;
                               1312                 :                : 
                               1313         [ +  + ]:             45 :     if (isize < 2)
                               1314                 :              1 :         return 0;               /* nothing to permute */
                               1315                 :                : 
                               1316                 :                :     /* Initialize prng state using the seed */
  868 tgl@sss.pgh.pa.us        1317                 :             44 :     pg_prng_seed(&state, (uint64) seed);
                               1318                 :                : 
                               1319                 :                :     /* Computations are performed on unsigned values */
 1104 dean.a.rasheed@gmail     1320                 :             44 :     size = (uint64) isize;
                               1321                 :             44 :     v = (uint64) val % size;
                               1322                 :                : 
                               1323                 :                :     /* Mask to work modulo largest power of 2 less than or equal to size */
                               1324                 :             44 :     masklen = pg_leftmost_one_pos64(size);
                               1325                 :             44 :     mask = (((uint64) 1) << masklen) - 1;
                               1326                 :                : 
                               1327                 :                :     /*
                               1328                 :                :      * Permute the input value by applying several rounds of pseudorandom
                               1329                 :                :      * bijective transformations.  The intention here is to distribute each
                               1330                 :                :      * input uniformly randomly across the range, and separate adjacent inputs
                               1331                 :                :      * approximately uniformly randomly from each other, leading to a fairly
                               1332                 :                :      * random overall choice of permutation.
                               1333                 :                :      *
                               1334                 :                :      * To separate adjacent inputs, we multiply by a random number modulo
                               1335                 :                :      * (mask + 1), which is a power of 2.  For this to be a bijection, the
                               1336                 :                :      * multiplier must be odd.  Since this is known to lead to less randomness
                               1337                 :                :      * in the lower bits, we also apply a rotation that shifts the topmost bit
                               1338                 :                :      * into the least significant bit.  In the special cases where size <= 3,
                               1339                 :                :      * mask = 1 and each of these operations is actually a no-op, so we also
                               1340                 :                :      * XOR the value with a different random number to inject additional
                               1341                 :                :      * randomness.  Since the size is generally not a power of 2, we apply
                               1342                 :                :      * this bijection on overlapping upper and lower halves of the input.
                               1343                 :                :      *
                               1344                 :                :      * To distribute the inputs uniformly across the range, we then also apply
                               1345                 :                :      * a random offset modulo the full range.
                               1346                 :                :      *
                               1347                 :                :      * Taken together, these operations resemble a modified linear
                               1348                 :                :      * congruential generator, as is commonly used in pseudorandom number
                               1349                 :                :      * generators.  The number of rounds is fairly arbitrary, but six has been
                               1350                 :                :      * found empirically to give a fairly good tradeoff between performance
                               1351                 :                :      * and uniform randomness.  For small sizes it selects each of the (size!)
                               1352                 :                :      * possible permutations with roughly equal probability.  For larger
                               1353                 :                :      * sizes, not all permutations can be generated, but the intended random
                               1354                 :                :      * spread is still produced.
                               1355                 :                :      */
                               1356         [ +  + ]:            308 :     for (i = 0; i < 6; i++)
                               1357                 :                :     {
                               1358                 :                :         uint64      m,
                               1359                 :                :                     r,
                               1360                 :                :                     t;
                               1361                 :                : 
                               1362                 :                :         /* Random multiply (by an odd number), XOR and rotate of lower half */
  868 tgl@sss.pgh.pa.us        1363                 :            264 :         m = (pg_prng_uint64(&state) & mask) | 1;
                               1364                 :            264 :         r = pg_prng_uint64(&state) & mask;
 1104 dean.a.rasheed@gmail     1365         [ +  + ]:            264 :         if (v <= mask)
                               1366                 :                :         {
                               1367                 :            219 :             v = ((v * m) ^ r) & mask;
                               1368                 :            219 :             v = ((v << 1) & mask) | (v >> (masklen - 1));
                               1369                 :                :         }
                               1370                 :                : 
                               1371                 :                :         /* Random multiply (by an odd number), XOR and rotate of upper half */
  868 tgl@sss.pgh.pa.us        1372                 :            264 :         m = (pg_prng_uint64(&state) & mask) | 1;
                               1373                 :            264 :         r = pg_prng_uint64(&state) & mask;
 1104 dean.a.rasheed@gmail     1374                 :            264 :         t = size - 1 - v;
                               1375         [ +  + ]:            264 :         if (t <= mask)
                               1376                 :                :         {
                               1377                 :            235 :             t = ((t * m) ^ r) & mask;
                               1378                 :            235 :             t = ((t << 1) & mask) | (t >> (masklen - 1));
                               1379                 :            235 :             v = size - 1 - t;
                               1380                 :                :         }
                               1381                 :                : 
                               1382                 :                :         /* Random offset */
  868 tgl@sss.pgh.pa.us        1383                 :            264 :         r = pg_prng_uint64_range(&state, 0, size - 1);
 1104 dean.a.rasheed@gmail     1384                 :            264 :         v = (v + r) % size;
                               1385                 :                :     }
                               1386                 :                : 
                               1387                 :             44 :     return (int64) v;
                               1388                 :                : }
                               1389                 :                : 
                               1390                 :                : /*
                               1391                 :                :  * Initialize the given SimpleStats struct to all zeroes
                               1392                 :                :  */
                               1393                 :                : static void
 2998 alvherre@alvh.no-ip.     1394                 :           1838 : initSimpleStats(SimpleStats *ss)
                               1395                 :                : {
                               1396                 :           1838 :     memset(ss, 0, sizeof(SimpleStats));
                               1397                 :           1838 : }
                               1398                 :                : 
                               1399                 :                : /*
                               1400                 :                :  * Accumulate one value into a SimpleStats struct.
                               1401                 :                :  */
                               1402                 :                : static void
                               1403                 :           9136 : addToSimpleStats(SimpleStats *ss, double val)
                               1404                 :                : {
                               1405   [ +  +  +  + ]:           9136 :     if (ss->count == 0 || val < ss->min)
                               1406                 :            129 :         ss->min = val;
                               1407   [ +  +  +  + ]:           9136 :     if (ss->count == 0 || val > ss->max)
                               1408                 :            438 :         ss->max = val;
                               1409                 :           9136 :     ss->count++;
                               1410                 :           9136 :     ss->sum += val;
                               1411                 :           9136 :     ss->sum2 += val * val;
                               1412                 :           9136 : }
                               1413                 :                : 
                               1414                 :                : /*
                               1415                 :                :  * Merge two SimpleStats objects
                               1416                 :                :  */
                               1417                 :                : static void
                               1418                 :            146 : mergeSimpleStats(SimpleStats *acc, SimpleStats *ss)
                               1419                 :                : {
                               1420   [ -  +  -  - ]:            146 :     if (acc->count == 0 || ss->min < acc->min)
                               1421                 :            146 :         acc->min = ss->min;
                               1422   [ -  +  -  - ]:            146 :     if (acc->count == 0 || ss->max > acc->max)
                               1423                 :            146 :         acc->max = ss->max;
                               1424                 :            146 :     acc->count += ss->count;
                               1425                 :            146 :     acc->sum += ss->sum;
                               1426                 :            146 :     acc->sum2 += ss->sum2;
                               1427                 :            146 : }
                               1428                 :                : 
                               1429                 :                : /*
                               1430                 :                :  * Initialize a StatsData struct to mostly zeroes, with its start time set to
                               1431                 :                :  * the given value.
                               1432                 :                :  */
                               1433                 :                : static void
 1131 tmunro@postgresql.or     1434                 :            491 : initStats(StatsData *sd, pg_time_usec_t start)
                               1435                 :                : {
                               1436                 :            491 :     sd->start_time = start;
 2998 alvherre@alvh.no-ip.     1437                 :            491 :     sd->cnt = 0;
                               1438                 :            491 :     sd->skipped = 0;
  753 ishii@postgresql.org     1439                 :            491 :     sd->retries = 0;
                               1440                 :            491 :     sd->retried = 0;
                               1441                 :            491 :     sd->serialization_failures = 0;
                               1442                 :            491 :     sd->deadlock_failures = 0;
 2998 alvherre@alvh.no-ip.     1443                 :            491 :     initSimpleStats(&sd->latency);
                               1444                 :            491 :     initSimpleStats(&sd->lag);
                               1445                 :            491 : }
                               1446                 :                : 
                               1447                 :                : /*
                               1448                 :                :  * Accumulate one additional item into the given stats object.
                               1449                 :                :  */
                               1450                 :                : static void
  753 ishii@postgresql.org     1451                 :           8543 : accumStats(StatsData *stats, bool skipped, double lat, double lag,
                               1452                 :                :            EStatus estatus, int64 tries)
                               1453                 :                : {
                               1454                 :                :     /* Record the skipped transaction */
 2998 alvherre@alvh.no-ip.     1455         [ +  + ]:           8543 :     if (skipped)
                               1456                 :                :     {
                               1457                 :                :         /* no latency to record on skipped transactions */
                               1458                 :              9 :         stats->skipped++;
  753 ishii@postgresql.org     1459                 :              9 :         return;
                               1460                 :                :     }
                               1461                 :                : 
                               1462                 :                :     /*
                               1463                 :                :      * Record the number of retries regardless of whether the transaction was
                               1464                 :                :      * successful or failed.
                               1465                 :                :      */
                               1466         [ +  + ]:           8534 :     if (tries > 1)
                               1467                 :                :     {
                               1468                 :              2 :         stats->retries += (tries - 1);
                               1469                 :              2 :         stats->retried++;
                               1470                 :                :     }
                               1471                 :                : 
                               1472   [ +  -  -  - ]:           8534 :     switch (estatus)
                               1473                 :                :     {
                               1474                 :                :             /* Record the successful transaction */
                               1475                 :           8534 :         case ESTATUS_NO_ERROR:
                               1476                 :           8534 :             stats->cnt++;
                               1477                 :                : 
                               1478                 :           8534 :             addToSimpleStats(&stats->latency, lat);
                               1479                 :                : 
                               1480                 :                :             /* and possibly the same for schedule lag */
                               1481         [ +  + ]:           8534 :             if (throttle_delay)
                               1482                 :            201 :                 addToSimpleStats(&stats->lag, lag);
                               1483                 :           8534 :             break;
                               1484                 :                : 
                               1485                 :                :             /* Record the failed transaction */
  753 ishii@postgresql.org     1486                 :UBC           0 :         case ESTATUS_SERIALIZATION_ERROR:
                               1487                 :              0 :             stats->serialization_failures++;
                               1488                 :              0 :             break;
                               1489                 :              0 :         case ESTATUS_DEADLOCK_ERROR:
                               1490                 :              0 :             stats->deadlock_failures++;
                               1491                 :              0 :             break;
                               1492                 :              0 :         default:
                               1493                 :                :             /* internal error which should never occur */
  737 tgl@sss.pgh.pa.us        1494                 :              0 :             pg_fatal("unexpected error status: %d", estatus);
                               1495                 :                :     }
                               1496                 :                : }
                               1497                 :                : 
                               1498                 :                : /* call PQexec() and exit() on failure */
                               1499                 :                : static void
 5995 bruce@momjian.us         1500                 :CBC          59 : executeStatement(PGconn *con, const char *sql)
                               1501                 :                : {
                               1502                 :                :     PGresult   *res;
                               1503                 :                : 
 6218 ishii@postgresql.org     1504                 :             59 :     res = PQexec(con, sql);
                               1505         [ -  + ]:             59 :     if (PQresultStatus(res) != PGRES_COMMAND_OK)
                               1506                 :                :     {
  737 tgl@sss.pgh.pa.us        1507                 :UBC           0 :         pg_log_error("query failed: %s", PQerrorMessage(con));
                               1508                 :              0 :         pg_log_error_detail("Query was: %s", sql);
 6218 ishii@postgresql.org     1509                 :              0 :         exit(1);
                               1510                 :                :     }
 6218 ishii@postgresql.org     1511                 :CBC          59 :     PQclear(res);
                               1512                 :             59 : }
                               1513                 :                : 
                               1514                 :                : /* call PQexec() and complain, but without exiting, on failure */
                               1515                 :                : static void
 3260 sfrost@snowman.net       1516                 :             30 : tryExecuteStatement(PGconn *con, const char *sql)
                               1517                 :                : {
                               1518                 :                :     PGresult   *res;
                               1519                 :                : 
                               1520                 :             30 :     res = PQexec(con, sql);
                               1521         [ -  + ]:             30 :     if (PQresultStatus(res) != PGRES_COMMAND_OK)
                               1522                 :                :     {
 1558 peter@eisentraut.org     1523                 :UBC           0 :         pg_log_error("%s", PQerrorMessage(con));
  737 tgl@sss.pgh.pa.us        1524                 :              0 :         pg_log_error_detail("(ignoring this error and continuing anyway)");
                               1525                 :                :     }
 3260 sfrost@snowman.net       1526                 :CBC          30 :     PQclear(res);
                               1527                 :             30 : }
                               1528                 :                : 
                               1529                 :                : /* set up a connection to the backend */
                               1530                 :                : static PGconn *
 7111 tgl@sss.pgh.pa.us        1531                 :            292 : doConnect(void)
                               1532                 :                : {
                               1533                 :                :     PGconn     *conn;
                               1534                 :                :     bool        new_pass;
                               1535                 :                :     static char *password = NULL;
                               1536                 :                : 
                               1537                 :                :     /*
                               1538                 :                :      * Start the connection.  Loop until we have a password if requested by
                               1539                 :                :      * backend.
                               1540                 :                :      */
                               1541                 :                :     do
                               1542                 :                :     {
                               1543                 :                : #define PARAMS_ARRAY_SIZE   7
                               1544                 :                : 
                               1545                 :                :         const char *keywords[PARAMS_ARRAY_SIZE];
                               1546                 :                :         const char *values[PARAMS_ARRAY_SIZE];
                               1547                 :                : 
 4302 rhaas@postgresql.org     1548                 :            292 :         keywords[0] = "host";
                               1549                 :            292 :         values[0] = pghost;
                               1550                 :            292 :         keywords[1] = "port";
                               1551                 :            292 :         values[1] = pgport;
                               1552                 :            292 :         keywords[2] = "user";
 1135 michael@paquier.xyz      1553                 :            292 :         values[2] = username;
 4302 rhaas@postgresql.org     1554                 :            292 :         keywords[3] = "password";
 1319 tgl@sss.pgh.pa.us        1555                 :            292 :         values[3] = password;
 4302 rhaas@postgresql.org     1556                 :            292 :         keywords[4] = "dbname";
                               1557                 :            292 :         values[4] = dbName;
                               1558                 :            292 :         keywords[5] = "fallback_application_name";
                               1559                 :            292 :         values[5] = progname;
                               1560                 :            292 :         keywords[6] = NULL;
                               1561                 :            292 :         values[6] = NULL;
                               1562                 :                : 
 5969 tgl@sss.pgh.pa.us        1563                 :            292 :         new_pass = false;
                               1564                 :                : 
 4302 rhaas@postgresql.org     1565                 :            292 :         conn = PQconnectdbParams(keywords, values, true);
                               1566                 :                : 
 5969 tgl@sss.pgh.pa.us        1567         [ -  + ]:            292 :         if (!conn)
                               1568                 :                :         {
 1558 peter@eisentraut.org     1569                 :UBC           0 :             pg_log_error("connection to database \"%s\" failed", dbName);
 5969 tgl@sss.pgh.pa.us        1570                 :              0 :             return NULL;
                               1571                 :                :         }
                               1572                 :                : 
 5969 tgl@sss.pgh.pa.us        1573   [ +  +  -  + ]:CBC         293 :         if (PQstatus(conn) == CONNECTION_BAD &&
 5969 tgl@sss.pgh.pa.us        1574                 :UBC           0 :             PQconnectionNeedsPassword(conn) &&
 1319                          1575         [ #  # ]:              0 :             !password)
                               1576                 :                :         {
 5969                          1577                 :              0 :             PQfinish(conn);
 1319                          1578                 :              0 :             password = simple_prompt("Password: ", false);
 5969                          1579                 :              0 :             new_pass = true;
                               1580                 :                :         }
 5969 tgl@sss.pgh.pa.us        1581         [ -  + ]:CBC         292 :     } while (new_pass);
                               1582                 :                : 
                               1583                 :                :     /* check to see that the backend connection was successfully made */
                               1584         [ +  + ]:            292 :     if (PQstatus(conn) == CONNECTION_BAD)
                               1585                 :                :     {
 1178                          1586                 :              1 :         pg_log_error("%s", PQerrorMessage(conn));
 5969                          1587                 :              1 :         PQfinish(conn);
                               1588                 :              1 :         return NULL;
                               1589                 :                :     }
                               1590                 :                : 
                               1591                 :            291 :     return conn;
                               1592                 :                : }
                               1593                 :                : 
                               1594                 :                : /* qsort comparator for Variable array */
                               1595                 :                : static int
 2900                          1596                 :          53433 : compareVariableNames(const void *v1, const void *v2)
                               1597                 :                : {
 6764                          1598                 :         106866 :     return strcmp(((const Variable *) v1)->name,
                               1599                 :          53433 :                   ((const Variable *) v2)->name);
                               1600                 :                : }
                               1601                 :                : 
                               1602                 :                : /* Locate a variable by name; returns NULL if unknown */
                               1603                 :                : static Variable *
  753 ishii@postgresql.org     1604                 :           7876 : lookupVariable(Variables *variables, char *name)
                               1605                 :                : {
                               1606                 :                :     Variable    key;
                               1607                 :                : 
                               1608                 :                :     /* On some versions of Solaris, bsearch of zero items dumps core */
                               1609         [ +  + ]:           7876 :     if (variables->nvars <= 0)
 6764 tgl@sss.pgh.pa.us        1610                 :            171 :         return NULL;
                               1611                 :                : 
                               1612                 :                :     /* Sort if we have to */
  753 ishii@postgresql.org     1613         [ +  + ]:           7705 :     if (!variables->vars_sorted)
                               1614                 :                :     {
  432 peter@eisentraut.org     1615                 :            963 :         qsort(variables->vars, variables->nvars, sizeof(Variable),
                               1616                 :                :               compareVariableNames);
  753 ishii@postgresql.org     1617                 :            963 :         variables->vars_sorted = true;
                               1618                 :                :     }
                               1619                 :                : 
                               1620                 :                :     /* Now we can search */
 6756 tgl@sss.pgh.pa.us        1621                 :           7705 :     key.name = name;
  432 peter@eisentraut.org     1622                 :           7705 :     return (Variable *) bsearch(&key,
                               1623                 :           7705 :                                 variables->vars,
  753 ishii@postgresql.org     1624                 :           7705 :                                 variables->nvars,
                               1625                 :                :                                 sizeof(Variable),
                               1626                 :                :                                 compareVariableNames);
                               1627                 :                : }
                               1628                 :                : 
                               1629                 :                : /* Get the value of a variable, in string form; returns NULL if unknown */
                               1630                 :                : static char *
                               1631                 :           2648 : getVariable(Variables *variables, char *name)
                               1632                 :                : {
                               1633                 :                :     Variable   *var;
                               1634                 :                :     char        stringform[64];
                               1635                 :                : 
                               1636                 :           2648 :     var = lookupVariable(variables, name);
 2900 tgl@sss.pgh.pa.us        1637         [ +  + ]:           2648 :     if (var == NULL)
                               1638                 :              4 :         return NULL;            /* not found */
                               1639                 :                : 
 2287 teodor@sigaev.ru         1640         [ +  + ]:           2644 :     if (var->svalue)
                               1641                 :           1038 :         return var->svalue;      /* we have it in string form */
                               1642                 :                : 
                               1643                 :                :     /* We need to produce a string equivalent of the value */
                               1644         [ -  + ]:           1606 :     Assert(var->value.type != PGBT_NO_VALUE);
                               1645         [ +  + ]:           1606 :     if (var->value.type == PGBT_NULL)
                               1646                 :              1 :         snprintf(stringform, sizeof(stringform), "NULL");
                               1647         [ +  + ]:           1605 :     else if (var->value.type == PGBT_BOOLEAN)
 2900 tgl@sss.pgh.pa.us        1648                 :UBC           0 :         snprintf(stringform, sizeof(stringform),
 2287 teodor@sigaev.ru         1649         [ +  - ]:CBC           1 :                  "%s", var->value.u.bval ? "true" : "false");
                               1650         [ +  + ]:           1604 :     else if (var->value.type == PGBT_INT)
 2900 tgl@sss.pgh.pa.us        1651                 :           1602 :         snprintf(stringform, sizeof(stringform),
                               1652                 :                :                  INT64_FORMAT, var->value.u.ival);
 2287 teodor@sigaev.ru         1653         [ +  - ]:              2 :     else if (var->value.type == PGBT_DOUBLE)
                               1654                 :              2 :         snprintf(stringform, sizeof(stringform),
                               1655                 :                :                  "%.*g", DBL_DIG, var->value.u.dval);
                               1656                 :                :     else                        /* internal error, unexpected type */
 2287 teodor@sigaev.ru         1657                 :UBC           0 :         Assert(0);
 2287 teodor@sigaev.ru         1658                 :CBC        1606 :     var->svalue = pg_strdup(stringform);
                               1659                 :           1606 :     return var->svalue;
                               1660                 :                : }
                               1661                 :                : 
                               1662                 :                : /* Try to convert variable to a value; return false on failure */
                               1663                 :                : static bool
                               1664                 :           1929 : makeVariableValue(Variable *var)
                               1665                 :                : {
                               1666                 :                :     size_t      slen;
                               1667                 :                : 
                               1668         [ +  + ]:           1929 :     if (var->value.type != PGBT_NO_VALUE)
 2900 tgl@sss.pgh.pa.us        1669                 :           1496 :         return true;            /* no work */
                               1670                 :                : 
 2287 teodor@sigaev.ru         1671                 :            433 :     slen = strlen(var->svalue);
                               1672                 :                : 
                               1673         [ -  + ]:            433 :     if (slen == 0)
                               1674                 :                :         /* what should it do on ""? */
 2287 teodor@sigaev.ru         1675                 :UBC           0 :         return false;
                               1676                 :                : 
 2287 teodor@sigaev.ru         1677         [ +  + ]:CBC         433 :     if (pg_strcasecmp(var->svalue, "null") == 0)
                               1678                 :                :     {
                               1679                 :              1 :         setNullValue(&var->value);
                               1680                 :                :     }
                               1681                 :                : 
                               1682                 :                :     /*
                               1683                 :                :      * accept prefixes such as y, ye, n, no... but not for "o". 0/1 are
                               1684                 :                :      * recognized later as an int, which is converted to bool if needed.
                               1685                 :                :      */
                               1686   [ +  +  +  - ]:            863 :     else if (pg_strncasecmp(var->svalue, "true", slen) == 0 ||
                               1687         [ -  + ]:            862 :              pg_strncasecmp(var->svalue, "yes", slen) == 0 ||
                               1688                 :            431 :              pg_strcasecmp(var->svalue, "on") == 0)
                               1689                 :                :     {
                               1690                 :              1 :         setBoolValue(&var->value, true);
                               1691                 :                :     }
                               1692   [ +  -  +  - ]:            862 :     else if (pg_strncasecmp(var->svalue, "false", slen) == 0 ||
                               1693         [ +  - ]:            862 :              pg_strncasecmp(var->svalue, "no", slen) == 0 ||
                               1694         [ +  + ]:            862 :              pg_strcasecmp(var->svalue, "off") == 0 ||
                               1695                 :            431 :              pg_strcasecmp(var->svalue, "of") == 0)
                               1696                 :                :     {
                               1697                 :              1 :         setBoolValue(&var->value, false);
                               1698                 :                :     }
                               1699         [ +  + ]:            430 :     else if (is_an_int(var->svalue))
                               1700                 :                :     {
                               1701                 :                :         /* if it looks like an int, it must be an int without overflow */
                               1702                 :                :         int64       iv;
                               1703                 :                : 
 2026 andres@anarazel.de       1704         [ -  + ]:            427 :         if (!strtoint64(var->svalue, false, &iv))
 2026 andres@anarazel.de       1705                 :UBC           0 :             return false;
                               1706                 :                : 
 2026 andres@anarazel.de       1707                 :CBC         427 :         setIntValue(&var->value, iv);
                               1708                 :                :     }
                               1709                 :                :     else                        /* type should be double */
                               1710                 :                :     {
                               1711                 :                :         double      dv;
                               1712                 :                : 
                               1713         [ +  + ]:              3 :         if (!strtodouble(var->svalue, true, &dv))
                               1714                 :                :         {
 1558 peter@eisentraut.org     1715                 :              2 :             pg_log_error("malformed variable \"%s\" value: \"%s\"",
                               1716                 :                :                          var->name, var->svalue);
 2900 tgl@sss.pgh.pa.us        1717                 :              2 :             return false;
                               1718                 :                :         }
 2287 teodor@sigaev.ru         1719                 :              1 :         setDoubleValue(&var->value, dv);
                               1720                 :                :     }
 2900 tgl@sss.pgh.pa.us        1721                 :            431 :     return true;
                               1722                 :                : }
                               1723                 :                : 
                               1724                 :                : /*
                               1725                 :                :  * Check whether a variable's name is allowed.
                               1726                 :                :  *
                               1727                 :                :  * We allow any non-ASCII character, as well as ASCII letters, digits, and
                               1728                 :                :  * underscore.
                               1729                 :                :  *
                               1730                 :                :  * Keep this in sync with the definitions of variable name characters in
                               1731                 :                :  * "src/fe_utils/psqlscan.l", "src/bin/psql/psqlscanslash.l" and
                               1732                 :                :  * "src/bin/pgbench/exprscan.l".  Also see parseVariable(), below.
                               1733                 :                :  *
                               1734                 :                :  * Note: this static function is copied from "src/bin/psql/variables.c"
                               1735                 :                :  * but changed to disallow variable names starting with a digit.
                               1736                 :                :  */
                               1737                 :                : static bool
 2414                          1738                 :           1037 : valid_variable_name(const char *name)
                               1739                 :                : {
                               1740                 :           1037 :     const unsigned char *ptr = (const unsigned char *) name;
                               1741                 :                : 
                               1742                 :                :     /* Mustn't be zero-length */
                               1743         [ -  + ]:           1037 :     if (*ptr == '\0')
 2414 tgl@sss.pgh.pa.us        1744                 :UBC           0 :         return false;
                               1745                 :                : 
                               1746                 :                :     /* must not start with [0-9] */
 1187 tgl@sss.pgh.pa.us        1747         [ +  - ]:CBC        1037 :     if (IS_HIGHBIT_SET(*ptr) ||
                               1748                 :           1037 :         strchr("ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz"
                               1749         [ +  + ]:           1037 :                "_", *ptr) != NULL)
                               1750                 :           1035 :         ptr++;
                               1751                 :                :     else
                               1752                 :              2 :         return false;
                               1753                 :                : 
                               1754                 :                :     /* remaining characters can include [0-9] */
 2414                          1755         [ +  + ]:           6577 :     while (*ptr)
                               1756                 :                :     {
                               1757         [ +  - ]:           5543 :         if (IS_HIGHBIT_SET(*ptr) ||
                               1758                 :           5543 :             strchr("ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz"
                               1759         [ +  + ]:           5543 :                    "_0123456789", *ptr) != NULL)
                               1760                 :           5542 :             ptr++;
                               1761                 :                :         else
 5212 itagaki.takahiro@gma     1762                 :              1 :             return false;
                               1763                 :                :     }
                               1764                 :                : 
 2414 tgl@sss.pgh.pa.us        1765                 :           1034 :     return true;
                               1766                 :                : }
                               1767                 :                : 
                               1768                 :                : /*
                               1769                 :                :  * Make sure there is enough space for 'needed' more variable in the variables
                               1770                 :                :  * array.
                               1771                 :                :  */
                               1772                 :                : static void
  753 ishii@postgresql.org     1773                 :           1034 : enlargeVariables(Variables *variables, int needed)
                               1774                 :                : {
                               1775                 :                :     /* total number of variables required now */
                               1776                 :           1034 :     needed += variables->nvars;
                               1777                 :                : 
                               1778         [ +  + ]:           1034 :     if (variables->max_vars < needed)
                               1779                 :                :     {
                               1780                 :            172 :         variables->max_vars = needed + VARIABLES_ALLOC_MARGIN;
                               1781                 :            172 :         variables->vars = (Variable *)
                               1782                 :            172 :             pg_realloc(variables->vars, variables->max_vars * sizeof(Variable));
                               1783                 :                :     }
                               1784                 :           1034 : }
                               1785                 :                : 
                               1786                 :                : /*
                               1787                 :                :  * Lookup a variable by name, creating it if need be.
                               1788                 :                :  * Caller is expected to assign a value to the variable.
                               1789                 :                :  * Returns NULL on failure (bad name).
                               1790                 :                :  */
                               1791                 :                : static Variable *
                               1792                 :           3001 : lookupCreateVariable(Variables *variables, const char *context, char *name)
                               1793                 :                : {
                               1794                 :                :     Variable   *var;
                               1795                 :                : 
                               1796                 :           3001 :     var = lookupVariable(variables, name);
 6772                          1797         [ +  + ]:           3001 :     if (var == NULL)
                               1798                 :                :     {
                               1799                 :                :         /*
                               1800                 :                :          * Check for the name only when declaring a new variable to avoid
                               1801                 :                :          * overhead.
                               1802                 :                :          */
 2414 tgl@sss.pgh.pa.us        1803         [ +  + ]:           1037 :         if (!valid_variable_name(name))
                               1804                 :                :         {
 1558 peter@eisentraut.org     1805                 :              3 :             pg_log_error("%s: invalid variable name: \"%s\"", context, name);
 2900 tgl@sss.pgh.pa.us        1806                 :              3 :             return NULL;
                               1807                 :                :         }
                               1808                 :                : 
                               1809                 :                :         /* Create variable at the end of the array */
  753 ishii@postgresql.org     1810                 :           1034 :         enlargeVariables(variables, 1);
                               1811                 :                : 
                               1812                 :           1034 :         var = &(variables->vars[variables->nvars]);
                               1813                 :                : 
 4212 tgl@sss.pgh.pa.us        1814                 :           1034 :         var->name = pg_strdup(name);
 2287 teodor@sigaev.ru         1815                 :           1034 :         var->svalue = NULL;
                               1816                 :                :         /* caller is expected to initialize remaining fields */
                               1817                 :                : 
  753 ishii@postgresql.org     1818                 :           1034 :         variables->nvars++;
                               1819                 :                :         /* we don't re-sort the array till we have to */
                               1820                 :           1034 :         variables->vars_sorted = false;
                               1821                 :                :     }
                               1822                 :                : 
 2900 tgl@sss.pgh.pa.us        1823                 :           2998 :     return var;
                               1824                 :                : }
                               1825                 :                : 
                               1826                 :                : /* Assign a string value to a variable, creating it if need be */
                               1827                 :                : /* Returns false on failure (bad name) */
                               1828                 :                : static bool
  753 ishii@postgresql.org     1829                 :            871 : putVariable(Variables *variables, const char *context, char *name,
                               1830                 :                :             const char *value)
                               1831                 :                : {
                               1832                 :                :     Variable   *var;
                               1833                 :                :     char       *val;
                               1834                 :                : 
                               1835                 :            871 :     var = lookupCreateVariable(variables, context, name);
 2900 tgl@sss.pgh.pa.us        1836         [ +  + ]:            871 :     if (!var)
                               1837                 :              2 :         return false;
                               1838                 :                : 
                               1839                 :                :     /* dup then free, in case value is pointing at this variable */
                               1840                 :            869 :     val = pg_strdup(value);
                               1841                 :                : 
  668 peter@eisentraut.org     1842                 :            869 :     free(var->svalue);
 2287 teodor@sigaev.ru         1843                 :            869 :     var->svalue = val;
                               1844                 :            869 :     var->value.type = PGBT_NO_VALUE;
                               1845                 :                : 
 2900 tgl@sss.pgh.pa.us        1846                 :            869 :     return true;
                               1847                 :                : }
                               1848                 :                : 
                               1849                 :                : /* Assign a value to a variable, creating it if need be */
                               1850                 :                : /* Returns false on failure (bad name) */
                               1851                 :                : static bool
  753 ishii@postgresql.org     1852                 :           2130 : putVariableValue(Variables *variables, const char *context, char *name,
                               1853                 :                :                  const PgBenchValue *value)
                               1854                 :                : {
                               1855                 :                :     Variable   *var;
                               1856                 :                : 
                               1857                 :           2130 :     var = lookupCreateVariable(variables, context, name);
 2900 tgl@sss.pgh.pa.us        1858         [ +  + ]:           2130 :     if (!var)
                               1859                 :              1 :         return false;
                               1860                 :                : 
  668 peter@eisentraut.org     1861                 :           2129 :     free(var->svalue);
 2287 teodor@sigaev.ru         1862                 :           2129 :     var->svalue = NULL;
                               1863                 :           2129 :     var->value = *value;
                               1864                 :                : 
 6772 ishii@postgresql.org     1865                 :           2129 :     return true;
                               1866                 :                : }
                               1867                 :                : 
                               1868                 :                : /* Assign an integer value to a variable, creating it if need be */
                               1869                 :                : /* Returns false on failure (bad name) */
                               1870                 :                : static bool
  753                          1871                 :            441 : putVariableInt(Variables *variables, const char *context, char *name,
                               1872                 :                :                int64 value)
                               1873                 :                : {
                               1874                 :                :     PgBenchValue val;
                               1875                 :                : 
 2900 tgl@sss.pgh.pa.us        1876                 :            441 :     setIntValue(&val, value);
  753 ishii@postgresql.org     1877                 :            441 :     return putVariableValue(variables, context, name, &val);
                               1878                 :                : }
                               1879                 :                : 
                               1880                 :                : /*
                               1881                 :                :  * Parse a possible variable reference (:varname).
                               1882                 :                :  *
                               1883                 :                :  * "sql" points at a colon.  If what follows it looks like a valid
                               1884                 :                :  * variable name, return a malloc'd string containing the variable name,
                               1885                 :                :  * and set *eaten to the number of characters consumed (including the colon).
                               1886                 :                :  * Otherwise, return NULL.
                               1887                 :                :  */
                               1888                 :                : static char *
 5870                          1889                 :           1711 : parseVariable(const char *sql, int *eaten)
                               1890                 :                : {
 1187 tgl@sss.pgh.pa.us        1891                 :           1711 :     int         i = 1;          /* starting at 1 skips the colon */
                               1892                 :                :     char       *name;
                               1893                 :                : 
                               1894                 :                :     /* keep this logic in sync with valid_variable_name() */
                               1895         [ +  - ]:           1711 :     if (IS_HIGHBIT_SET(sql[i]) ||
                               1896                 :           1711 :         strchr("ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz"
                               1897         [ +  + ]:           1711 :                "_", sql[i]) != NULL)
                               1898                 :           1262 :         i++;
                               1899                 :                :     else
                               1900                 :            449 :         return NULL;
                               1901                 :                : 
                               1902         [ -  + ]:           6607 :     while (IS_HIGHBIT_SET(sql[i]) ||
                               1903                 :           6607 :            strchr("ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz"
                               1904         [ +  + ]:           6607 :                   "_0123456789", sql[i]) != NULL)
 5870 ishii@postgresql.org     1905                 :           5345 :         i++;
                               1906                 :                : 
 4212 tgl@sss.pgh.pa.us        1907                 :           1262 :     name = pg_malloc(i);
 5870 ishii@postgresql.org     1908                 :           1262 :     memcpy(name, &sql[1], i - 1);
                               1909                 :           1262 :     name[i - 1] = '\0';
                               1910                 :                : 
                               1911                 :           1262 :     *eaten = i;
                               1912                 :           1262 :     return name;
                               1913                 :                : }
                               1914                 :                : 
                               1915                 :                : static char *
                               1916                 :           1261 : replaceVariable(char **sql, char *param, int len, char *value)
                               1917                 :                : {
 5421 bruce@momjian.us         1918                 :           1261 :     int         valueln = strlen(value);
                               1919                 :                : 
 5870 ishii@postgresql.org     1920         [ +  + ]:           1261 :     if (valueln > len)
                               1921                 :                :     {
 5421 bruce@momjian.us         1922                 :            562 :         size_t      offset = param - *sql;
                               1923                 :                : 
 4212 tgl@sss.pgh.pa.us        1924                 :            562 :         *sql = pg_realloc(*sql, strlen(*sql) - len + valueln + 1);
 5870 ishii@postgresql.org     1925                 :            562 :         param = *sql + offset;
                               1926                 :                :     }
                               1927                 :                : 
                               1928         [ +  + ]:           1261 :     if (valueln != len)
                               1929                 :           1212 :         memmove(param + valueln, param + len, strlen(param + len) + 1);
 3368 tgl@sss.pgh.pa.us        1930                 :           1261 :     memcpy(param, value, valueln);
                               1931                 :                : 
 5870 ishii@postgresql.org     1932                 :           1261 :     return param + valueln;
                               1933                 :                : }
                               1934                 :                : 
                               1935                 :                : static char *
  753                          1936                 :           8351 : assignVariables(Variables *variables, char *sql)
                               1937                 :                : {
                               1938                 :                :     char       *p,
                               1939                 :                :                *name,
                               1940                 :                :                *val;
                               1941                 :                : 
 5870                          1942                 :           8351 :     p = sql;
                               1943         [ +  + ]:           9765 :     while ((p = strchr(p, ':')) != NULL)
                               1944                 :                :     {
                               1945                 :                :         int         eaten;
                               1946                 :                : 
                               1947                 :           1414 :         name = parseVariable(p, &eaten);
                               1948         [ +  + ]:           1414 :         if (name == NULL)
                               1949                 :                :         {
 5421 bruce@momjian.us         1950         [ +  + ]:           1299 :             while (*p == ':')
                               1951                 :                :             {
                               1952                 :            866 :                 p++;
                               1953                 :                :             }
 6772 ishii@postgresql.org     1954                 :            433 :             continue;
                               1955                 :                :         }
                               1956                 :                : 
  753                          1957                 :            981 :         val = getVariable(variables, name);
 6772                          1958                 :            981 :         free(name);
                               1959         [ -  + ]:            981 :         if (val == NULL)
                               1960                 :                :         {
 5870 ishii@postgresql.org     1961                 :UBC           0 :             p++;
                               1962                 :              0 :             continue;
                               1963                 :                :         }
                               1964                 :                : 
 4994 tgl@sss.pgh.pa.us        1965                 :CBC         981 :         p = replaceVariable(&sql, p, eaten, val);
                               1966                 :                :     }
                               1967                 :                : 
 5870 ishii@postgresql.org     1968                 :           8351 :     return sql;
                               1969                 :                : }
                               1970                 :                : 
                               1971                 :                : static void
  753                          1972                 :           2263 : getQueryParams(Variables *variables, const Command *command,
                               1973                 :                :                const char **params)
                               1974                 :                : {
                               1975                 :                :     int         i;
                               1976                 :                : 
 5870                          1977         [ +  + ]:           3925 :     for (i = 0; i < command->argc - 1; i++)
  753                          1978                 :           1662 :         params[i] = getVariable(variables, command->argv[i + 1]);
 5870                          1979                 :           2263 : }
                               1980                 :                : 
                               1981                 :                : static char *
 2287 teodor@sigaev.ru         1982                 :              4 : valueTypeName(PgBenchValue *pval)
                               1983                 :                : {
                               1984         [ -  + ]:              4 :     if (pval->type == PGBT_NO_VALUE)
 2287 teodor@sigaev.ru         1985                 :UBC           0 :         return "none";
 2287 teodor@sigaev.ru         1986         [ -  + ]:CBC           4 :     else if (pval->type == PGBT_NULL)
 2287 teodor@sigaev.ru         1987                 :UBC           0 :         return "null";
 2287 teodor@sigaev.ru         1988         [ -  + ]:CBC           4 :     else if (pval->type == PGBT_INT)
 2287 teodor@sigaev.ru         1989                 :UBC           0 :         return "int";
 2287 teodor@sigaev.ru         1990         [ +  + ]:CBC           4 :     else if (pval->type == PGBT_DOUBLE)
                               1991                 :              1 :         return "double";
                               1992         [ +  - ]:              3 :     else if (pval->type == PGBT_BOOLEAN)
                               1993                 :              3 :         return "boolean";
                               1994                 :                :     else
                               1995                 :                :     {
                               1996                 :                :         /* internal error, should never get there */
 2287 teodor@sigaev.ru         1997                 :UBC           0 :         Assert(false);
                               1998                 :                :         return NULL;
                               1999                 :                :     }
                               2000                 :                : }
                               2001                 :                : 
                               2002                 :                : /* get a value as a boolean, or tell if there is a problem */
                               2003                 :                : static bool
 2287 teodor@sigaev.ru         2004                 :CBC         108 : coerceToBool(PgBenchValue *pval, bool *bval)
                               2005                 :                : {
                               2006         [ +  + ]:            108 :     if (pval->type == PGBT_BOOLEAN)
                               2007                 :                :     {
                               2008                 :            107 :         *bval = pval->u.bval;
                               2009                 :            107 :         return true;
                               2010                 :                :     }
                               2011                 :                :     else                        /* NULL, INT or DOUBLE */
                               2012                 :                :     {
 1558 peter@eisentraut.org     2013                 :              1 :         pg_log_error("cannot coerce %s to boolean", valueTypeName(pval));
 2251 tgl@sss.pgh.pa.us        2014                 :              1 :         *bval = false;          /* suppress uninitialized-variable warnings */
 2287 teodor@sigaev.ru         2015                 :              1 :         return false;
                               2016                 :                :     }
                               2017                 :                : }
                               2018                 :                : 
                               2019                 :                : /*
                               2020                 :                :  * Return true or false from an expression for conditional purposes.
                               2021                 :                :  * Non zero numerical values are true, zero and NULL are false.
                               2022                 :                :  */
                               2023                 :                : static bool
                               2024                 :            440 : valueTruth(PgBenchValue *pval)
                               2025                 :                : {
                               2026   [ +  +  +  +  :            440 :     switch (pval->type)
                                                 - ]
                               2027                 :                :     {
                               2028                 :              1 :         case PGBT_NULL:
                               2029                 :              1 :             return false;
                               2030                 :             26 :         case PGBT_BOOLEAN:
                               2031                 :             26 :             return pval->u.bval;
                               2032                 :            412 :         case PGBT_INT:
                               2033                 :            412 :             return pval->u.ival != 0;
                               2034                 :              1 :         case PGBT_DOUBLE:
                               2035                 :              1 :             return pval->u.dval != 0.0;
 2287 teodor@sigaev.ru         2036                 :UBC           0 :         default:
                               2037                 :                :             /* internal error, unexpected type */
                               2038                 :              0 :             Assert(0);
                               2039                 :                :             return false;
                               2040                 :                :     }
                               2041                 :                : }
                               2042                 :                : 
                               2043                 :                : /* get a value as an int, tell if there is a problem */
                               2044                 :                : static bool
 2939 rhaas@postgresql.org     2045                 :CBC        6604 : coerceToInt(PgBenchValue *pval, int64 *ival)
                               2046                 :                : {
                               2047         [ +  + ]:           6604 :     if (pval->type == PGBT_INT)
                               2048                 :                :     {
                               2049                 :           6600 :         *ival = pval->u.ival;
                               2050                 :           6600 :         return true;
                               2051                 :                :     }
 2287 teodor@sigaev.ru         2052         [ +  + ]:              4 :     else if (pval->type == PGBT_DOUBLE)
                               2053                 :                :     {
 1620 tgl@sss.pgh.pa.us        2054                 :              2 :         double      dval = rint(pval->u.dval);
                               2055                 :                : 
                               2056   [ +  -  +  -  :              2 :         if (isnan(dval) || !FLOAT8_FITS_IN_INT64(dval))
                                              +  + ]
                               2057                 :                :         {
 1558 peter@eisentraut.org     2058                 :              1 :             pg_log_error("double to int overflow for %f", dval);
 2939 rhaas@postgresql.org     2059                 :              1 :             return false;
                               2060                 :                :         }
                               2061                 :              1 :         *ival = (int64) dval;
                               2062                 :              1 :         return true;
                               2063                 :                :     }
                               2064                 :                :     else                        /* BOOLEAN or NULL */
                               2065                 :                :     {
 1558 peter@eisentraut.org     2066                 :              2 :         pg_log_error("cannot coerce %s to int", valueTypeName(pval));
 2287 teodor@sigaev.ru         2067                 :              2 :         return false;
                               2068                 :                :     }
                               2069                 :                : }
                               2070                 :                : 
                               2071                 :                : /* get a value as a double, or tell if there is a problem */
                               2072                 :                : static bool
 2939 rhaas@postgresql.org     2073                 :            104 : coerceToDouble(PgBenchValue *pval, double *dval)
                               2074                 :                : {
                               2075         [ +  + ]:            104 :     if (pval->type == PGBT_DOUBLE)
                               2076                 :                :     {
                               2077                 :             73 :         *dval = pval->u.dval;
                               2078                 :             73 :         return true;
                               2079                 :                :     }
 2287 teodor@sigaev.ru         2080         [ +  + ]:             31 :     else if (pval->type == PGBT_INT)
                               2081                 :                :     {
 2939 rhaas@postgresql.org     2082                 :             30 :         *dval = (double) pval->u.ival;
                               2083                 :             30 :         return true;
                               2084                 :                :     }
                               2085                 :                :     else                        /* BOOLEAN or NULL */
                               2086                 :                :     {
 1558 peter@eisentraut.org     2087                 :              1 :         pg_log_error("cannot coerce %s to double", valueTypeName(pval));
 2287 teodor@sigaev.ru         2088                 :              1 :         return false;
                               2089                 :                :     }
                               2090                 :                : }
                               2091                 :                : 
                               2092                 :                : /* assign a null value */
                               2093                 :                : static void
                               2094                 :              4 : setNullValue(PgBenchValue *pv)
                               2095                 :                : {
                               2096                 :              4 :     pv->type = PGBT_NULL;
                               2097                 :              4 :     pv->u.ival = 0;
                               2098                 :              4 : }
                               2099                 :                : 
                               2100                 :                : /* assign a boolean value */
                               2101                 :                : static void
                               2102                 :            139 : setBoolValue(PgBenchValue *pv, bool bval)
                               2103                 :                : {
                               2104                 :            139 :     pv->type = PGBT_BOOLEAN;
                               2105                 :            139 :     pv->u.bval = bval;
 2939 rhaas@postgresql.org     2106                 :            139 : }
                               2107                 :                : 
                               2108                 :                : /* assign an integer value */
                               2109                 :                : static void
                               2110                 :           4078 : setIntValue(PgBenchValue *pv, int64 ival)
                               2111                 :                : {
                               2112                 :           4078 :     pv->type = PGBT_INT;
                               2113                 :           4078 :     pv->u.ival = ival;
                               2114                 :           4078 : }
                               2115                 :                : 
                               2116                 :                : /* assign a double value */
                               2117                 :                : static void
                               2118                 :             39 : setDoubleValue(PgBenchValue *pv, double dval)
                               2119                 :                : {
                               2120                 :             39 :     pv->type = PGBT_DOUBLE;
                               2121                 :             39 :     pv->u.dval = dval;
                               2122                 :             39 : }
                               2123                 :                : 
                               2124                 :                : static bool
 2180 tgl@sss.pgh.pa.us        2125                 :           3573 : isLazyFunc(PgBenchFunction func)
                               2126                 :                : {
 2287 teodor@sigaev.ru         2127   [ +  +  +  +  :           3573 :     return func == PGBENCH_AND || func == PGBENCH_OR || func == PGBENCH_CASE;
                                              +  + ]
                               2128                 :                : }
                               2129                 :                : 
                               2130                 :                : /* lazy evaluation of some functions */
                               2131                 :                : static bool
 1838 tgl@sss.pgh.pa.us        2132                 :             65 : evalLazyFunc(CState *st,
                               2133                 :                :              PgBenchFunction func, PgBenchExprLink *args, PgBenchValue *retval)
                               2134                 :                : {
                               2135                 :                :     PgBenchValue a1,
                               2136                 :                :                 a2;
                               2137                 :                :     bool        ba1,
                               2138                 :                :                 ba2;
                               2139                 :                : 
 2287 teodor@sigaev.ru         2140   [ +  -  +  -  :             65 :     Assert(isLazyFunc(func) && args != NULL && args->next != NULL);
                                              +  - ]
                               2141                 :                : 
                               2142                 :                :     /* args points to first condition */
 1838 tgl@sss.pgh.pa.us        2143         [ +  + ]:             65 :     if (!evaluateExpr(st, args->expr, &a1))
 2287 teodor@sigaev.ru         2144                 :              1 :         return false;
                               2145                 :                : 
                               2146                 :                :     /* second condition for AND/OR and corresponding branch for CASE */
                               2147                 :             64 :     args = args->next;
                               2148                 :                : 
                               2149   [ +  +  +  - ]:             64 :     switch (func)
                               2150                 :                :     {
 2180 tgl@sss.pgh.pa.us        2151                 :             44 :         case PGBENCH_AND:
                               2152         [ -  + ]:             44 :             if (a1.type == PGBT_NULL)
                               2153                 :                :             {
 2180 tgl@sss.pgh.pa.us        2154                 :UBC           0 :                 setNullValue(retval);
                               2155                 :              0 :                 return true;
                               2156                 :                :             }
                               2157                 :                : 
 2180 tgl@sss.pgh.pa.us        2158         [ -  + ]:CBC          44 :             if (!coerceToBool(&a1, &ba1))
 2180 tgl@sss.pgh.pa.us        2159                 :UBC           0 :                 return false;
                               2160                 :                : 
 2180 tgl@sss.pgh.pa.us        2161         [ +  + ]:CBC          44 :             if (!ba1)
                               2162                 :                :             {
                               2163                 :              3 :                 setBoolValue(retval, false);
                               2164                 :              3 :                 return true;
                               2165                 :                :             }
                               2166                 :                : 
 1838                          2167         [ -  + ]:             41 :             if (!evaluateExpr(st, args->expr, &a2))
 2180 tgl@sss.pgh.pa.us        2168                 :UBC           0 :                 return false;
                               2169                 :                : 
 2180 tgl@sss.pgh.pa.us        2170         [ -  + ]:CBC          41 :             if (a2.type == PGBT_NULL)
                               2171                 :                :             {
 2180 tgl@sss.pgh.pa.us        2172                 :UBC           0 :                 setNullValue(retval);
                               2173                 :              0 :                 return true;
                               2174                 :                :             }
 2180 tgl@sss.pgh.pa.us        2175         [ -  + ]:CBC          41 :             else if (!coerceToBool(&a2, &ba2))
 2180 tgl@sss.pgh.pa.us        2176                 :UBC           0 :                 return false;
                               2177                 :                :             else
                               2178                 :                :             {
 2180 tgl@sss.pgh.pa.us        2179                 :CBC          41 :                 setBoolValue(retval, ba2);
                               2180                 :             41 :                 return true;
                               2181                 :                :             }
                               2182                 :                : 
                               2183                 :                :             return true;
                               2184                 :                : 
                               2185                 :              4 :         case PGBENCH_OR:
                               2186                 :                : 
                               2187         [ -  + ]:              4 :             if (a1.type == PGBT_NULL)
                               2188                 :                :             {
 2180 tgl@sss.pgh.pa.us        2189                 :UBC           0 :                 setNullValue(retval);
                               2190                 :              0 :                 return true;
                               2191                 :                :             }
                               2192                 :                : 
 2180 tgl@sss.pgh.pa.us        2193         [ -  + ]:CBC           4 :             if (!coerceToBool(&a1, &ba1))
 2180 tgl@sss.pgh.pa.us        2194                 :UBC           0 :                 return false;
                               2195                 :                : 
 2180 tgl@sss.pgh.pa.us        2196         [ +  + ]:CBC           4 :             if (ba1)
                               2197                 :                :             {
                               2198                 :              1 :                 setBoolValue(retval, true);
                               2199                 :              1 :                 return true;
                               2200                 :                :             }
                               2201                 :                : 
 1838                          2202         [ -  + ]:              3 :             if (!evaluateExpr(st, args->expr, &a2))
 2180 tgl@sss.pgh.pa.us        2203                 :UBC           0 :                 return false;
                               2204                 :                : 
 2180 tgl@sss.pgh.pa.us        2205         [ -  + ]:CBC           3 :             if (a2.type == PGBT_NULL)
                               2206                 :                :             {
 2180 tgl@sss.pgh.pa.us        2207                 :UBC           0 :                 setNullValue(retval);
                               2208                 :              0 :                 return true;
                               2209                 :                :             }
 2180 tgl@sss.pgh.pa.us        2210         [ -  + ]:CBC           3 :             else if (!coerceToBool(&a2, &ba2))
 2180 tgl@sss.pgh.pa.us        2211                 :UBC           0 :                 return false;
                               2212                 :                :             else
                               2213                 :                :             {
 2180 tgl@sss.pgh.pa.us        2214                 :CBC           3 :                 setBoolValue(retval, ba2);
                               2215                 :              3 :                 return true;
                               2216                 :                :             }
                               2217                 :                : 
                               2218                 :             16 :         case PGBENCH_CASE:
                               2219                 :                :             /* when true, execute branch */
                               2220         [ +  + ]:             16 :             if (valueTruth(&a1))
 1838                          2221                 :             11 :                 return evaluateExpr(st, args->expr, retval);
                               2222                 :                : 
                               2223                 :                :             /* now args contains next condition or final else expression */
 2180                          2224                 :              5 :             args = args->next;
                               2225                 :                : 
                               2226                 :                :             /* final else case? */
                               2227         [ +  + ]:              5 :             if (args->next == NULL)
 1838                          2228                 :              3 :                 return evaluateExpr(st, args->expr, retval);
                               2229                 :                : 
                               2230                 :                :             /* no, another when, proceed */
                               2231                 :              2 :             return evalLazyFunc(st, PGBENCH_CASE, args, retval);
                               2232                 :                : 
 2180 tgl@sss.pgh.pa.us        2233                 :UBC           0 :         default:
                               2234                 :                :             /* internal error, cannot get here */
                               2235                 :              0 :             Assert(0);
                               2236                 :                :             break;
                               2237                 :                :     }
                               2238                 :                :     return false;
                               2239                 :                : }
                               2240                 :                : 
                               2241                 :                : /* maximum number of function arguments */
                               2242                 :                : #define MAX_FARGS 16
                               2243                 :                : 
                               2244                 :                : /*
                               2245                 :                :  * Recursive evaluation of standard functions,
                               2246                 :                :  * which do not require lazy evaluation.
                               2247                 :                :  */
                               2248                 :                : static bool
 1838 tgl@sss.pgh.pa.us        2249                 :CBC        3445 : evalStandardFunc(CState *st,
                               2250                 :                :                  PgBenchFunction func, PgBenchExprLink *args,
                               2251                 :                :                  PgBenchValue *retval)
                               2252                 :                : {
                               2253                 :                :     /* evaluate all function arguments */
 2180                          2254                 :           3445 :     int         nargs = 0;
 2966 rhaas@postgresql.org     2255                 :           3445 :     PgBenchExprLink *l = args;
 2180 tgl@sss.pgh.pa.us        2256                 :           3445 :     bool        has_null = false;
                               2257                 :                : 
                               2258                 :                :     /*
                               2259                 :                :      * This value is double braced to workaround GCC bug 53119, which seems to
                               2260                 :                :      * exist at least on gcc (Debian 4.7.2-5) 4.7.2, 32-bit.
                               2261                 :                :      */
  247 michael@paquier.xyz      2262                 :GNC        3445 :     PgBenchValue vargs[MAX_FARGS] = {{0}};
                               2263                 :                : 
 2966 rhaas@postgresql.org     2264   [ +  +  +  + ]:CBC       10298 :     for (nargs = 0; nargs < MAX_FARGS && l != NULL; nargs++, l = l->next)
                               2265                 :                :     {
 1838 tgl@sss.pgh.pa.us        2266         [ +  + ]:           6855 :         if (!evaluateExpr(st, l->expr, &vargs[nargs]))
 2966 rhaas@postgresql.org     2267                 :              2 :             return false;
 2287 teodor@sigaev.ru         2268                 :           6853 :         has_null |= vargs[nargs].type == PGBT_NULL;
                               2269                 :                :     }
                               2270                 :                : 
 2966 rhaas@postgresql.org     2271         [ +  + ]:           3443 :     if (l != NULL)
                               2272                 :                :     {
 1558 peter@eisentraut.org     2273                 :              1 :         pg_log_error("too many function arguments, maximum is %d", MAX_FARGS);
 2966 rhaas@postgresql.org     2274                 :              1 :         return false;
                               2275                 :                :     }
                               2276                 :                : 
                               2277                 :                :     /* NULL arguments */
 2287 teodor@sigaev.ru         2278   [ +  +  +  +  :           3442 :     if (has_null && func != PGBENCH_IS && func != PGBENCH_DEBUG)
                                              +  + ]
                               2279                 :                :     {
                               2280                 :              3 :         setNullValue(retval);
                               2281                 :              3 :         return true;
                               2282                 :                :     }
                               2283                 :                : 
                               2284                 :                :     /* then evaluate function */
 2966 rhaas@postgresql.org     2285   [ +  +  +  +  :           3439 :     switch (func)
                                     +  +  +  +  +  
                                     +  +  +  +  +  
                                                 - ]
                               2286                 :                :     {
                               2287                 :                :             /* overloaded operators */
                               2288                 :           1701 :         case PGBENCH_ADD:
                               2289                 :                :         case PGBENCH_SUB:
                               2290                 :                :         case PGBENCH_MUL:
                               2291                 :                :         case PGBENCH_DIV:
                               2292                 :                :         case PGBENCH_MOD:
                               2293                 :                :         case PGBENCH_EQ:
                               2294                 :                :         case PGBENCH_NE:
                               2295                 :                :         case PGBENCH_LE:
                               2296                 :                :         case PGBENCH_LT:
                               2297                 :                :             {
 2866                          2298                 :           1701 :                 PgBenchValue *lval = &vargs[0],
                               2299                 :           1701 :                            *rval = &vargs[1];
                               2300                 :                : 
 2966                          2301         [ -  + ]:           1701 :                 Assert(nargs == 2);
                               2302                 :                : 
                               2303                 :                :                 /* overloaded type management, double if some double */
 2939                          2304         [ +  + ]:           1701 :                 if ((lval->type == PGBT_DOUBLE ||
                               2305   [ +  +  +  - ]:           1701 :                      rval->type == PGBT_DOUBLE) && func != PGBENCH_MOD)
                               2306                 :                :                 {
                               2307                 :                :                     double      ld,
                               2308                 :                :                                 rd;
                               2309                 :                : 
                               2310         [ +  - ]:             31 :                     if (!coerceToDouble(lval, &ld) ||
                               2311         [ -  + ]:             31 :                         !coerceToDouble(rval, &rd))
 2939 rhaas@postgresql.org     2312                 :UBC           0 :                         return false;
                               2313                 :                : 
 2939 rhaas@postgresql.org     2314   [ +  +  +  +  :CBC          31 :                     switch (func)
                                        +  +  +  +  
                                                 - ]
                               2315                 :                :                     {
                               2316                 :              1 :                         case PGBENCH_ADD:
                               2317                 :              1 :                             setDoubleValue(retval, ld + rd);
                               2318                 :              1 :                             return true;
                               2319                 :                : 
                               2320                 :             10 :                         case PGBENCH_SUB:
                               2321                 :             10 :                             setDoubleValue(retval, ld - rd);
                               2322                 :             10 :                             return true;
                               2323                 :                : 
                               2324                 :              8 :                         case PGBENCH_MUL:
                               2325                 :              8 :                             setDoubleValue(retval, ld * rd);
                               2326                 :              8 :                             return true;
                               2327                 :                : 
                               2328                 :              2 :                         case PGBENCH_DIV:
                               2329                 :              2 :                             setDoubleValue(retval, ld / rd);
                               2330                 :              2 :                             return true;
                               2331                 :                : 
 2287 teodor@sigaev.ru         2332                 :              4 :                         case PGBENCH_EQ:
                               2333                 :              4 :                             setBoolValue(retval, ld == rd);
                               2334                 :              4 :                             return true;
                               2335                 :                : 
                               2336                 :              2 :                         case PGBENCH_NE:
                               2337                 :              2 :                             setBoolValue(retval, ld != rd);
                               2338                 :              2 :                             return true;
                               2339                 :                : 
                               2340                 :              2 :                         case PGBENCH_LE:
                               2341                 :              2 :                             setBoolValue(retval, ld <= rd);
                               2342                 :              2 :                             return true;
                               2343                 :                : 
                               2344                 :              2 :                         case PGBENCH_LT:
                               2345                 :              2 :                             setBoolValue(retval, ld < rd);
                               2346                 :              2 :                             return true;
                               2347                 :                : 
 2939 rhaas@postgresql.org     2348                 :UBC           0 :                         default:
                               2349                 :                :                             /* cannot get here */
                               2350                 :              0 :                             Assert(0);
                               2351                 :                :                     }
                               2352                 :                :                 }
                               2353                 :                :                 else            /* we have integer operands, or % */
                               2354                 :                :                 {
                               2355                 :                :                     int64       li,
                               2356                 :                :                                 ri,
                               2357                 :                :                                 res;
                               2358                 :                : 
 2939 rhaas@postgresql.org     2359         [ +  + ]:CBC        1670 :                     if (!coerceToInt(lval, &li) ||
                               2360         [ -  + ]:           1669 :                         !coerceToInt(rval, &ri))
                               2361                 :           1670 :                         return false;
                               2362                 :                : 
                               2363   [ +  +  +  +  :           1669 :                     switch (func)
                                        +  +  +  +  
                                                 - ]
                               2364                 :                :                     {
                               2365                 :             44 :                         case PGBENCH_ADD:
 2026 andres@anarazel.de       2366         [ +  + ]:             44 :                             if (pg_add_s64_overflow(li, ri, &res))
                               2367                 :                :                             {
 1558 peter@eisentraut.org     2368                 :              1 :                                 pg_log_error("bigint add out of range");
 2026 andres@anarazel.de       2369                 :              1 :                                 return false;
                               2370                 :                :                             }
                               2371                 :             43 :                             setIntValue(retval, res);
 2939 rhaas@postgresql.org     2372                 :             43 :                             return true;
                               2373                 :                : 
                               2374                 :            149 :                         case PGBENCH_SUB:
 2026 andres@anarazel.de       2375         [ +  + ]:            149 :                             if (pg_sub_s64_overflow(li, ri, &res))
                               2376                 :                :                             {
 1558 peter@eisentraut.org     2377                 :              1 :                                 pg_log_error("bigint sub out of range");
 2026 andres@anarazel.de       2378                 :              1 :                                 return false;
                               2379                 :                :                             }
                               2380                 :            148 :                             setIntValue(retval, res);
 2939 rhaas@postgresql.org     2381                 :            148 :                             return true;
                               2382                 :                : 
                               2383                 :           1412 :                         case PGBENCH_MUL:
 2026 andres@anarazel.de       2384         [ +  + ]:           1412 :                             if (pg_mul_s64_overflow(li, ri, &res))
                               2385                 :                :                             {
 1558 peter@eisentraut.org     2386                 :              1 :                                 pg_log_error("bigint mul out of range");
 2026 andres@anarazel.de       2387                 :              1 :                                 return false;
                               2388                 :                :                             }
                               2389                 :           1411 :                             setIntValue(retval, res);
 2939 rhaas@postgresql.org     2390                 :           1411 :                             return true;
                               2391                 :                : 
 2287 teodor@sigaev.ru         2392                 :             32 :                         case PGBENCH_EQ:
                               2393                 :             32 :                             setBoolValue(retval, li == ri);
                               2394                 :             32 :                             return true;
                               2395                 :                : 
                               2396                 :              5 :                         case PGBENCH_NE:
                               2397                 :              5 :                             setBoolValue(retval, li != ri);
                               2398                 :              5 :                             return true;
                               2399                 :                : 
                               2400                 :              5 :                         case PGBENCH_LE:
                               2401                 :              5 :                             setBoolValue(retval, li <= ri);
                               2402                 :              5 :                             return true;
                               2403                 :                : 
                               2404                 :             12 :                         case PGBENCH_LT:
                               2405                 :             12 :                             setBoolValue(retval, li < ri);
                               2406                 :             12 :                             return true;
                               2407                 :                : 
 2939 rhaas@postgresql.org     2408                 :             10 :                         case PGBENCH_DIV:
                               2409                 :                :                         case PGBENCH_MOD:
                               2410         [ +  + ]:             10 :                             if (ri == 0)
                               2411                 :                :                             {
 1558 peter@eisentraut.org     2412                 :              2 :                                 pg_log_error("division by zero");
 2939 rhaas@postgresql.org     2413                 :              2 :                                 return false;
                               2414                 :                :                             }
                               2415                 :                :                             /* special handling of -1 divisor */
                               2416         [ +  + ]:              8 :                             if (ri == -1)
                               2417                 :                :                             {
                               2418         [ +  + ]:              3 :                                 if (func == PGBENCH_DIV)
                               2419                 :                :                                 {
                               2420                 :                :                                     /* overflow check (needed for INT64_MIN) */
                               2421         [ +  + ]:              2 :                                     if (li == PG_INT64_MIN)
                               2422                 :                :                                     {
 1558 peter@eisentraut.org     2423                 :              1 :                                         pg_log_error("bigint div out of range");
 2939 rhaas@postgresql.org     2424                 :              1 :                                         return false;
                               2425                 :                :                                     }
                               2426                 :                :                                     else
 2866                          2427                 :              1 :                                         setIntValue(retval, -li);
                               2428                 :                :                                 }
                               2429                 :                :                                 else
 2939                          2430                 :              1 :                                     setIntValue(retval, 0);
                               2431                 :              2 :                                 return true;
                               2432                 :                :                             }
                               2433                 :                :                             /* else divisor is not -1 */
                               2434         [ +  + ]:              5 :                             if (func == PGBENCH_DIV)
                               2435                 :              2 :                                 setIntValue(retval, li / ri);
                               2436                 :                :                             else    /* func == PGBENCH_MOD */
                               2437                 :              3 :                                 setIntValue(retval, li % ri);
                               2438                 :                : 
 2966                          2439                 :              5 :                             return true;
                               2440                 :                : 
 2939 rhaas@postgresql.org     2441                 :UBC           0 :                         default:
                               2442                 :                :                             /* cannot get here */
                               2443                 :              0 :                             Assert(0);
                               2444                 :                :                     }
                               2445                 :                :                 }
                               2446                 :                : 
                               2447                 :                :                 Assert(0);
                               2448                 :                :                 return false;   /* NOTREACHED */
                               2449                 :                :             }
                               2450                 :                : 
                               2451                 :                :             /* integer bitwise operators */
 2287 teodor@sigaev.ru         2452                 :CBC          14 :         case PGBENCH_BITAND:
                               2453                 :                :         case PGBENCH_BITOR:
                               2454                 :                :         case PGBENCH_BITXOR:
                               2455                 :                :         case PGBENCH_LSHIFT:
                               2456                 :                :         case PGBENCH_RSHIFT:
                               2457                 :                :             {
                               2458                 :                :                 int64       li,
                               2459                 :                :                             ri;
                               2460                 :                : 
                               2461   [ +  -  -  + ]:             14 :                 if (!coerceToInt(&vargs[0], &li) || !coerceToInt(&vargs[1], &ri))
 2287 teodor@sigaev.ru         2462                 :UBC           0 :                     return false;
                               2463                 :                : 
 2287 teodor@sigaev.ru         2464         [ +  + ]:CBC          14 :                 if (func == PGBENCH_BITAND)
                               2465                 :              1 :                     setIntValue(retval, li & ri);
                               2466         [ +  + ]:             13 :                 else if (func == PGBENCH_BITOR)
                               2467                 :              2 :                     setIntValue(retval, li | ri);
                               2468         [ +  + ]:             11 :                 else if (func == PGBENCH_BITXOR)
                               2469                 :              3 :                     setIntValue(retval, li ^ ri);
                               2470         [ +  + ]:              8 :                 else if (func == PGBENCH_LSHIFT)
                               2471                 :              7 :                     setIntValue(retval, li << ri);
                               2472         [ +  - ]:              1 :                 else if (func == PGBENCH_RSHIFT)
                               2473                 :              1 :                     setIntValue(retval, li >> ri);
                               2474                 :                :                 else            /* cannot get here */
 2287 teodor@sigaev.ru         2475                 :UBC           0 :                     Assert(0);
                               2476                 :                : 
 2287 teodor@sigaev.ru         2477                 :CBC          14 :                 return true;
                               2478                 :                :             }
                               2479                 :                : 
                               2480                 :                :             /* logical operators */
                               2481                 :             16 :         case PGBENCH_NOT:
                               2482                 :                :             {
                               2483                 :                :                 bool        b;
                               2484                 :                : 
                               2485         [ +  + ]:             16 :                 if (!coerceToBool(&vargs[0], &b))
                               2486                 :              1 :                     return false;
                               2487                 :                : 
                               2488                 :             15 :                 setBoolValue(retval, !b);
                               2489                 :             15 :                 return true;
                               2490                 :                :             }
                               2491                 :                : 
                               2492                 :                :             /* no arguments */
 2939 rhaas@postgresql.org     2493                 :              1 :         case PGBENCH_PI:
                               2494                 :              1 :             setDoubleValue(retval, M_PI);
                               2495                 :              1 :             return true;
                               2496                 :                : 
                               2497                 :                :             /* 1 overloaded argument */
 2966                          2498                 :              2 :         case PGBENCH_ABS:
                               2499                 :                :             {
 2939                          2500                 :              2 :                 PgBenchValue *varg = &vargs[0];
                               2501                 :                : 
 2966                          2502         [ -  + ]:              2 :                 Assert(nargs == 1);
                               2503                 :                : 
 2939                          2504         [ +  + ]:              2 :                 if (varg->type == PGBT_INT)
                               2505                 :                :                 {
 2866                          2506                 :              1 :                     int64       i = varg->u.ival;
                               2507                 :                : 
 2939                          2508                 :              1 :                     setIntValue(retval, i < 0 ? -i : i);
                               2509                 :                :                 }
                               2510                 :                :                 else
                               2511                 :                :                 {
 2866                          2512                 :              1 :                     double      d = varg->u.dval;
                               2513                 :                : 
 2939                          2514         [ -  + ]:              1 :                     Assert(varg->type == PGBT_DOUBLE);
 2866                          2515         [ +  - ]:              1 :                     setDoubleValue(retval, d < 0.0 ? -d : d);
                               2516                 :                :                 }
                               2517                 :                : 
 2966                          2518                 :              2 :                 return true;
                               2519                 :                :             }
                               2520                 :                : 
                               2521                 :             84 :         case PGBENCH_DEBUG:
                               2522                 :                :             {
 2939                          2523                 :             84 :                 PgBenchValue *varg = &vargs[0];
                               2524                 :                : 
                               2525         [ -  + ]:             84 :                 Assert(nargs == 1);
                               2526                 :                : 
 2866                          2527                 :             84 :                 fprintf(stderr, "debug(script=%d,command=%d): ",
 2757 heikki.linnakangas@i     2528                 :             84 :                         st->use_file, st->command + 1);
                               2529                 :                : 
 2287 teodor@sigaev.ru         2530         [ +  + ]:             84 :                 if (varg->type == PGBT_NULL)
                               2531                 :              2 :                     fprintf(stderr, "null\n");
                               2532         [ +  + ]:             82 :                 else if (varg->type == PGBT_BOOLEAN)
                               2533         [ +  + ]:             19 :                     fprintf(stderr, "boolean %s\n", varg->u.bval ? "true" : "false");
                               2534         [ +  + ]:             63 :                 else if (varg->type == PGBT_INT)
 2866 rhaas@postgresql.org     2535                 :             47 :                     fprintf(stderr, "int " INT64_FORMAT "\n", varg->u.ival);
 2287 teodor@sigaev.ru         2536         [ +  - ]:             16 :                 else if (varg->type == PGBT_DOUBLE)
 2900 tgl@sss.pgh.pa.us        2537                 :             16 :                     fprintf(stderr, "double %.*g\n", DBL_DIG, varg->u.dval);
                               2538                 :                :                 else            /* internal error, unexpected type */
 2287 teodor@sigaev.ru         2539                 :UBC           0 :                     Assert(0);
                               2540                 :                : 
 2939 rhaas@postgresql.org     2541                 :CBC          84 :                 *retval = *varg;
                               2542                 :                : 
                               2543                 :             84 :                 return true;
                               2544                 :                :             }
                               2545                 :                : 
                               2546                 :                :             /* 1 double argument */
                               2547                 :              5 :         case PGBENCH_DOUBLE:
                               2548                 :                :         case PGBENCH_SQRT:
                               2549                 :                :         case PGBENCH_LN:
                               2550                 :                :         case PGBENCH_EXP:
                               2551                 :                :             {
                               2552                 :                :                 double      dval;
                               2553                 :                : 
 2966                          2554         [ -  + ]:              5 :                 Assert(nargs == 1);
                               2555                 :                : 
 2939                          2556         [ +  + ]:              5 :                 if (!coerceToDouble(&vargs[0], &dval))
                               2557                 :              1 :                     return false;
                               2558                 :                : 
                               2559         [ +  + ]:              4 :                 if (func == PGBENCH_SQRT)
                               2560                 :              1 :                     dval = sqrt(dval);
 2287 teodor@sigaev.ru         2561         [ +  + ]:              3 :                 else if (func == PGBENCH_LN)
                               2562                 :              1 :                     dval = log(dval);
                               2563         [ +  + ]:              2 :                 else if (func == PGBENCH_EXP)
                               2564                 :              1 :                     dval = exp(dval);
                               2565                 :                :                 /* else is cast: do nothing */
                               2566                 :                : 
 2939 rhaas@postgresql.org     2567                 :              4 :                 setDoubleValue(retval, dval);
                               2568                 :              4 :                 return true;
                               2569                 :                :             }
                               2570                 :                : 
                               2571                 :                :             /* 1 int argument */
                               2572                 :              2 :         case PGBENCH_INT:
                               2573                 :                :             {
                               2574                 :                :                 int64       ival;
                               2575                 :                : 
                               2576         [ -  + ]:              2 :                 Assert(nargs == 1);
                               2577                 :                : 
                               2578         [ +  + ]:              2 :                 if (!coerceToInt(&vargs[0], &ival))
                               2579                 :              1 :                     return false;
                               2580                 :                : 
                               2581                 :              1 :                 setIntValue(retval, ival);
 2966                          2582                 :              1 :                 return true;
                               2583                 :                :             }
                               2584                 :                : 
                               2585                 :                :             /* variable number of arguments */
 2901 tgl@sss.pgh.pa.us        2586                 :              4 :         case PGBENCH_LEAST:
                               2587                 :                :         case PGBENCH_GREATEST:
                               2588                 :                :             {
                               2589                 :                :                 bool        havedouble;
                               2590                 :                :                 int         i;
                               2591                 :                : 
                               2592         [ -  + ]:              4 :                 Assert(nargs >= 1);
                               2593                 :                : 
                               2594                 :                :                 /* need double result if any input is double */
                               2595                 :              4 :                 havedouble = false;
                               2596         [ +  + ]:             14 :                 for (i = 0; i < nargs; i++)
                               2597                 :                :                 {
                               2598         [ +  + ]:             12 :                     if (vargs[i].type == PGBT_DOUBLE)
                               2599                 :                :                     {
                               2600                 :              2 :                         havedouble = true;
                               2601                 :              2 :                         break;
                               2602                 :                :                     }
                               2603                 :                :                 }
                               2604         [ +  + ]:              4 :                 if (havedouble)
                               2605                 :                :                 {
                               2606                 :                :                     double      extremum;
                               2607                 :                : 
                               2608         [ -  + ]:              2 :                     if (!coerceToDouble(&vargs[0], &extremum))
 2939 rhaas@postgresql.org     2609                 :UBC           0 :                         return false;
 2901 tgl@sss.pgh.pa.us        2610         [ +  + ]:CBC           6 :                     for (i = 1; i < nargs; i++)
                               2611                 :                :                     {
                               2612                 :                :                         double      dval;
                               2613                 :                : 
                               2614         [ -  + ]:              4 :                         if (!coerceToDouble(&vargs[i], &dval))
 2901 tgl@sss.pgh.pa.us        2615                 :UBC           0 :                             return false;
 2901 tgl@sss.pgh.pa.us        2616         [ +  + ]:CBC           4 :                         if (func == PGBENCH_LEAST)
                               2617         [ +  - ]:              2 :                             extremum = Min(extremum, dval);
                               2618                 :                :                         else
                               2619         [ +  - ]:              2 :                             extremum = Max(extremum, dval);
                               2620                 :                :                     }
                               2621                 :              2 :                     setDoubleValue(retval, extremum);
                               2622                 :                :                 }
                               2623                 :                :                 else
                               2624                 :                :                 {
                               2625                 :                :                     int64       extremum;
                               2626                 :                : 
                               2627         [ -  + ]:              2 :                     if (!coerceToInt(&vargs[0], &extremum))
 2901 tgl@sss.pgh.pa.us        2628                 :UBC           0 :                         return false;
 2901 tgl@sss.pgh.pa.us        2629         [ +  + ]:CBC           8 :                     for (i = 1; i < nargs; i++)
                               2630                 :                :                     {
                               2631                 :                :                         int64       ival;
                               2632                 :                : 
                               2633         [ -  + ]:              6 :                         if (!coerceToInt(&vargs[i], &ival))
 2901 tgl@sss.pgh.pa.us        2634                 :UBC           0 :                             return false;
 2901 tgl@sss.pgh.pa.us        2635         [ +  + ]:CBC           6 :                         if (func == PGBENCH_LEAST)
                               2636                 :              3 :                             extremum = Min(extremum, ival);
                               2637                 :                :                         else
                               2638                 :              3 :                             extremum = Max(extremum, ival);
                               2639                 :                :                     }
                               2640                 :              2 :                     setIntValue(retval, extremum);
                               2641                 :                :                 }
 2966 rhaas@postgresql.org     2642                 :              4 :                 return true;
                               2643                 :                :             }
                               2644                 :                : 
                               2645                 :                :             /* random functions */
 2939                          2646                 :           1539 :         case PGBENCH_RANDOM:
                               2647                 :                :         case PGBENCH_RANDOM_EXPONENTIAL:
                               2648                 :                :         case PGBENCH_RANDOM_GAUSSIAN:
                               2649                 :                :         case PGBENCH_RANDOM_ZIPFIAN:
                               2650                 :                :             {
                               2651                 :                :                 int64       imin,
                               2652                 :                :                             imax,
                               2653                 :                :                             delta;
                               2654                 :                : 
 2866                          2655         [ -  + ]:           1539 :                 Assert(nargs >= 2);
                               2656                 :                : 
                               2657         [ +  + ]:           1539 :                 if (!coerceToInt(&vargs[0], &imin) ||
                               2658         [ -  + ]:           1538 :                     !coerceToInt(&vargs[1], &imax))
 2939                          2659                 :              1 :                     return false;
                               2660                 :                : 
                               2661                 :                :                 /* check random range */
 1021 tgl@sss.pgh.pa.us        2662         [ +  + ]:           1538 :                 if (unlikely(imin > imax))
                               2663                 :                :                 {
 1558 peter@eisentraut.org     2664                 :              1 :                     pg_log_error("empty range given to random");
 2866 rhaas@postgresql.org     2665                 :              1 :                     return false;
                               2666                 :                :                 }
 1021 tgl@sss.pgh.pa.us        2667   [ +  +  -  +  :           1537 :                 else if (unlikely(pg_sub_s64_overflow(imax, imin, &delta) ||
                                              +  + ]
                               2668                 :                :                                   pg_add_s64_overflow(delta, 1, &delta)))
                               2669                 :                :                 {
                               2670                 :                :                     /* prevent int overflows in random functions */
 1558 peter@eisentraut.org     2671                 :              1 :                     pg_log_error("random range is too large");
 2866 rhaas@postgresql.org     2672                 :              1 :                     return false;
                               2673                 :                :                 }
                               2674                 :                : 
                               2675         [ +  + ]:           1536 :                 if (func == PGBENCH_RANDOM)
                               2676                 :                :                 {
                               2677         [ -  + ]:           1523 :                     Assert(nargs == 2);
 1976 alvherre@alvh.no-ip.     2678                 :           1523 :                     setIntValue(retval, getrand(&st->cs_func_rs, imin, imax));
                               2679                 :                :                 }
                               2680                 :                :                 else            /* gaussian & exponential */
                               2681                 :                :                 {
                               2682                 :                :                     double      param;
                               2683                 :                : 
 2866 rhaas@postgresql.org     2684         [ -  + ]:             13 :                     Assert(nargs == 3);
                               2685                 :                : 
                               2686         [ -  + ]:             13 :                     if (!coerceToDouble(&vargs[2], &param))
 2939 rhaas@postgresql.org     2687                 :UBC           0 :                         return false;
                               2688                 :                : 
 2866 rhaas@postgresql.org     2689         [ +  + ]:CBC          13 :                     if (func == PGBENCH_RANDOM_GAUSSIAN)
                               2690                 :                :                     {
                               2691         [ +  + ]:              4 :                         if (param < MIN_GAUSSIAN_PARAM)
                               2692                 :                :                         {
 1558 peter@eisentraut.org     2693                 :              1 :                             pg_log_error("gaussian parameter must be at least %f (not %f)",
                               2694                 :                :                                          MIN_GAUSSIAN_PARAM, param);
 2866 rhaas@postgresql.org     2695                 :              1 :                             return false;
                               2696                 :                :                         }
                               2697                 :                : 
                               2698                 :              3 :                         setIntValue(retval,
                               2699                 :                :                                     getGaussianRand(&st->cs_func_rs,
                               2700                 :                :                                                     imin, imax, param));
                               2701                 :                :                     }
 2313 teodor@sigaev.ru         2702         [ +  + ]:              9 :                     else if (func == PGBENCH_RANDOM_ZIPFIAN)
                               2703                 :                :                     {
 1840 tgl@sss.pgh.pa.us        2704   [ +  +  +  + ]:              5 :                         if (param < MIN_ZIPFIAN_PARAM || param > MAX_ZIPFIAN_PARAM)
                               2705                 :                :                         {
 1558 peter@eisentraut.org     2706                 :              2 :                             pg_log_error("zipfian parameter must be in range [%.3f, %.0f] (not %f)",
                               2707                 :                :                                          MIN_ZIPFIAN_PARAM, MAX_ZIPFIAN_PARAM, param);
 2313 teodor@sigaev.ru         2708                 :              2 :                             return false;
                               2709                 :                :                         }
                               2710                 :                : 
                               2711                 :              3 :                         setIntValue(retval,
                               2712                 :                :                                     getZipfianRand(&st->cs_func_rs, imin, imax, param));
                               2713                 :                :                     }
                               2714                 :                :                     else        /* exponential */
                               2715                 :                :                     {
 2866 rhaas@postgresql.org     2716         [ +  + ]:              4 :                         if (param <= 0.0)
                               2717                 :                :                         {
 1558 peter@eisentraut.org     2718                 :              1 :                             pg_log_error("exponential parameter must be greater than zero (not %f)",
                               2719                 :                :                                          param);
 2866 rhaas@postgresql.org     2720                 :              1 :                             return false;
                               2721                 :                :                         }
                               2722                 :                : 
                               2723                 :              3 :                         setIntValue(retval,
                               2724                 :                :                                     getExponentialRand(&st->cs_func_rs,
                               2725                 :                :                                                        imin, imax, param));
                               2726                 :                :                     }
                               2727                 :                :                 }
                               2728                 :                : 
                               2729                 :           1532 :                 return true;
                               2730                 :                :             }
                               2731                 :                : 
 2300                          2732                 :              9 :         case PGBENCH_POW:
                               2733                 :                :             {
                               2734                 :              9 :                 PgBenchValue *lval = &vargs[0];
                               2735                 :              9 :                 PgBenchValue *rval = &vargs[1];
                               2736                 :                :                 double      ld,
                               2737                 :                :                             rd;
                               2738                 :                : 
                               2739         [ -  + ]:              9 :                 Assert(nargs == 2);
                               2740                 :                : 
                               2741         [ +  - ]:              9 :                 if (!coerceToDouble(lval, &ld) ||
                               2742         [ -  + ]:              9 :                     !coerceToDouble(rval, &rd))
 2300 rhaas@postgresql.org     2743                 :UBC           0 :                     return false;
                               2744                 :                : 
 2300 rhaas@postgresql.org     2745                 :CBC           9 :                 setDoubleValue(retval, pow(ld, rd));
                               2746                 :                : 
                               2747                 :              9 :                 return true;
                               2748                 :                :             }
                               2749                 :                : 
 2287 teodor@sigaev.ru         2750                 :             10 :         case PGBENCH_IS:
                               2751                 :                :             {
                               2752         [ -  + ]:             10 :                 Assert(nargs == 2);
                               2753                 :                : 
                               2754                 :                :                 /*
                               2755                 :                :                  * note: this simple implementation is more permissive than
                               2756                 :                :                  * SQL
                               2757                 :                :                  */
                               2758                 :             10 :                 setBoolValue(retval,
                               2759         [ +  + ]:             15 :                              vargs[0].type == vargs[1].type &&
                               2760         [ +  - ]:              5 :                              vargs[0].u.bval == vargs[1].u.bval);
                               2761                 :             10 :                 return true;
                               2762                 :                :             }
                               2763                 :                : 
                               2764                 :                :             /* hashing */
 2216                          2765                 :              6 :         case PGBENCH_HASH_FNV1A:
                               2766                 :                :         case PGBENCH_HASH_MURMUR2:
                               2767                 :                :             {
                               2768                 :                :                 int64       val,
                               2769                 :                :                             seed;
                               2770                 :                : 
                               2771         [ -  + ]:              6 :                 Assert(nargs == 2);
                               2772                 :                : 
                               2773         [ +  - ]:              6 :                 if (!coerceToInt(&vargs[0], &val) ||
                               2774         [ -  + ]:              6 :                     !coerceToInt(&vargs[1], &seed))
 2216 teodor@sigaev.ru         2775                 :UBC           0 :                     return false;
                               2776                 :                : 
 2216 teodor@sigaev.ru         2777         [ +  + ]:CBC           6 :                 if (func == PGBENCH_HASH_MURMUR2)
                               2778                 :              5 :                     setIntValue(retval, getHashMurmur2(val, seed));
                               2779         [ +  - ]:              1 :                 else if (func == PGBENCH_HASH_FNV1A)
                               2780                 :              1 :                     setIntValue(retval, getHashFnv1a(val, seed));
                               2781                 :                :                 else
                               2782                 :                :                     /* cannot get here */
 2216 teodor@sigaev.ru         2783                 :UBC           0 :                     Assert(0);
                               2784                 :                : 
 2216 teodor@sigaev.ru         2785                 :CBC           6 :                 return true;
                               2786                 :                :             }
                               2787                 :                : 
 1104 dean.a.rasheed@gmail     2788                 :             46 :         case PGBENCH_PERMUTE:
                               2789                 :                :             {
                               2790                 :                :                 int64       val,
                               2791                 :                :                             size,
                               2792                 :                :                             seed;
                               2793                 :                : 
                               2794         [ -  + ]:             46 :                 Assert(nargs == 3);
                               2795                 :                : 
                               2796         [ +  - ]:             46 :                 if (!coerceToInt(&vargs[0], &val) ||
                               2797         [ +  - ]:             46 :                     !coerceToInt(&vargs[1], &size) ||
                               2798         [ -  + ]:             46 :                     !coerceToInt(&vargs[2], &seed))
 1104 dean.a.rasheed@gmail     2799                 :UBC           0 :                     return false;
                               2800                 :                : 
 1104 dean.a.rasheed@gmail     2801         [ +  + ]:CBC          46 :                 if (size <= 0)
                               2802                 :                :                 {
                               2803                 :              1 :                     pg_log_error("permute size parameter must be greater than zero");
                               2804                 :              1 :                     return false;
                               2805                 :                :                 }
                               2806                 :                : 
                               2807                 :             45 :                 setIntValue(retval, permute(val, size, seed));
                               2808                 :             45 :                 return true;
                               2809                 :                :             }
                               2810                 :                : 
 2966 rhaas@postgresql.org     2811                 :UBC           0 :         default:
                               2812                 :                :             /* cannot get here */
 2939                          2813                 :              0 :             Assert(0);
                               2814                 :                :             /* dead code to avoid a compiler warning */
                               2815                 :                :             return false;
                               2816                 :                :     }
                               2817                 :                : }
                               2818                 :                : 
                               2819                 :                : /* evaluate some function */
                               2820                 :                : static bool
 1838 tgl@sss.pgh.pa.us        2821                 :CBC        3508 : evalFunc(CState *st,
                               2822                 :                :          PgBenchFunction func, PgBenchExprLink *args, PgBenchValue *retval)
                               2823                 :                : {
 2287 teodor@sigaev.ru         2824         [ +  + ]:           3508 :     if (isLazyFunc(func))
 1838 tgl@sss.pgh.pa.us        2825                 :             63 :         return evalLazyFunc(st, func, args, retval);
                               2826                 :                :     else
                               2827                 :           3445 :         return evalStandardFunc(st, func, args, retval);
                               2828                 :                : }
                               2829                 :                : 
                               2830                 :                : /*
                               2831                 :                :  * Recursive evaluation of an expression in a pgbench script
                               2832                 :                :  * using the current state of variables.
                               2833                 :                :  * Returns whether the evaluation was ok,
                               2834                 :                :  * the value itself is returned through the retval pointer.
                               2835                 :                :  */
                               2836                 :                : static bool
                               2837                 :           9114 : evaluateExpr(CState *st, PgBenchExpr *expr, PgBenchValue *retval)
                               2838                 :                : {
 2966 rhaas@postgresql.org     2839   [ +  +  +  - ]:           9114 :     switch (expr->etype)
                               2840                 :                :     {
 2939                          2841                 :           3675 :         case ENODE_CONSTANT:
                               2842                 :                :             {
                               2843                 :           3675 :                 *retval = expr->u.constant;
 2966                          2844                 :           3675 :                 return true;
                               2845                 :                :             }
                               2846                 :                : 
                               2847                 :           1931 :         case ENODE_VARIABLE:
                               2848                 :                :             {
                               2849                 :                :                 Variable   *var;
                               2850                 :                : 
  753 ishii@postgresql.org     2851         [ +  + ]:           1931 :                 if ((var = lookupVariable(&st->variables, expr->u.variable.varname)) == NULL)
                               2852                 :                :                 {
 1558 peter@eisentraut.org     2853                 :              2 :                     pg_log_error("undefined variable \"%s\"", expr->u.variable.varname);
 2966 rhaas@postgresql.org     2854                 :              2 :                     return false;
                               2855                 :                :                 }
                               2856                 :                : 
 2287 teodor@sigaev.ru         2857         [ +  + ]:           1929 :                 if (!makeVariableValue(var))
 2900 tgl@sss.pgh.pa.us        2858                 :              2 :                     return false;
                               2859                 :                : 
 2287 teodor@sigaev.ru         2860                 :           1927 :                 *retval = var->value;
 2966 rhaas@postgresql.org     2861                 :           1927 :                 return true;
                               2862                 :                :             }
                               2863                 :                : 
                               2864                 :           3508 :         case ENODE_FUNCTION:
 1838 tgl@sss.pgh.pa.us        2865                 :           3508 :             return evalFunc(st,
                               2866                 :                :                             expr->u.function.function,
                               2867                 :                :                             expr->u.function.args,
                               2868                 :                :                             retval);
                               2869                 :                : 
 3331 rhaas@postgresql.org     2870                 :UBC           0 :         default:
                               2871                 :                :             /* internal error which should never occur */
  737 tgl@sss.pgh.pa.us        2872                 :              0 :             pg_fatal("unexpected enode type in evaluation: %d", expr->etype);
                               2873                 :                :     }
                               2874                 :                : }
                               2875                 :                : 
                               2876                 :                : /*
                               2877                 :                :  * Convert command name to meta-command enum identifier
                               2878                 :                :  */
                               2879                 :                : static MetaCommand
 2355 tgl@sss.pgh.pa.us        2880                 :CBC         482 : getMetaCommand(const char *cmd)
                               2881                 :                : {
                               2882                 :                :     MetaCommand mc;
                               2883                 :                : 
                               2884         [ -  + ]:            482 :     if (cmd == NULL)
 2355 tgl@sss.pgh.pa.us        2885                 :UBC           0 :         mc = META_NONE;
 2355 tgl@sss.pgh.pa.us        2886         [ +  + ]:CBC         482 :     else if (pg_strcasecmp(cmd, "set") == 0)
                               2887                 :            363 :         mc = META_SET;
                               2888         [ +  + ]:            119 :     else if (pg_strcasecmp(cmd, "setshell") == 0)
                               2889                 :              4 :         mc = META_SETSHELL;
                               2890         [ +  + ]:            115 :     else if (pg_strcasecmp(cmd, "shell") == 0)
                               2891                 :              5 :         mc = META_SHELL;
                               2892         [ +  + ]:            110 :     else if (pg_strcasecmp(cmd, "sleep") == 0)
                               2893                 :              9 :         mc = META_SLEEP;
 2215 teodor@sigaev.ru         2894         [ +  + ]:            101 :     else if (pg_strcasecmp(cmd, "if") == 0)
                               2895                 :             16 :         mc = META_IF;
                               2896         [ +  + ]:             85 :     else if (pg_strcasecmp(cmd, "elif") == 0)
                               2897                 :              8 :         mc = META_ELIF;
                               2898         [ +  + ]:             77 :     else if (pg_strcasecmp(cmd, "else") == 0)
                               2899                 :              8 :         mc = META_ELSE;
                               2900         [ +  + ]:             69 :     else if (pg_strcasecmp(cmd, "endif") == 0)
                               2901                 :             13 :         mc = META_ENDIF;
 1921 alvherre@alvh.no-ip.     2902         [ +  + ]:             56 :     else if (pg_strcasecmp(cmd, "gset") == 0)
                               2903                 :             30 :         mc = META_GSET;
 1472 michael@paquier.xyz      2904         [ +  + ]:             26 :     else if (pg_strcasecmp(cmd, "aset") == 0)
                               2905                 :              3 :         mc = META_ASET;
 1126 alvherre@alvh.no-ip.     2906         [ +  + ]:             23 :     else if (pg_strcasecmp(cmd, "startpipeline") == 0)
                               2907                 :             11 :         mc = META_STARTPIPELINE;
   81 michael@paquier.xyz      2908         [ +  + ]:GNC          12 :     else if (pg_strcasecmp(cmd, "syncpipeline") == 0)
                               2909                 :              4 :         mc = META_SYNCPIPELINE;
 1126 alvherre@alvh.no-ip.     2910         [ +  + ]:CBC           8 :     else if (pg_strcasecmp(cmd, "endpipeline") == 0)
                               2911                 :              7 :         mc = META_ENDPIPELINE;
                               2912                 :                :     else
 2355 tgl@sss.pgh.pa.us        2913                 :              1 :         mc = META_NONE;
                               2914                 :            482 :     return mc;
                               2915                 :                : }
                               2916                 :                : 
                               2917                 :                : /*
                               2918                 :                :  * Run a shell command. The result is assigned to the variable if not NULL.
                               2919                 :                :  * Return true if succeeded, or false on error.
                               2920                 :                :  */
                               2921                 :                : static bool
  753 ishii@postgresql.org     2922                 :              6 : runShellCommand(Variables *variables, char *variable, char **argv, int argc)
                               2923                 :                : {
                               2924                 :                :     char        command[SHELL_COMMAND_SIZE];
                               2925                 :                :     int         i,
 5161 bruce@momjian.us         2926                 :              6 :                 len = 0;
                               2927                 :                :     FILE       *fp;
                               2928                 :                :     char        res[64];
                               2929                 :                :     char       *endptr;
                               2930                 :                :     int         retval;
                               2931                 :                : 
                               2932                 :                :     /*----------
                               2933                 :                :      * Join arguments with whitespace separators. Arguments starting with
                               2934                 :                :      * exactly one colon are treated as variables:
                               2935                 :                :      *  name - append a string "name"
                               2936                 :                :      *  :var - append a variable named 'var'
                               2937                 :                :      *  ::name - append a string ":name"
                               2938                 :                :      *----------
                               2939                 :                :      */
 5234 itagaki.takahiro@gma     2940         [ +  + ]:             17 :     for (i = 0; i < argc; i++)
                               2941                 :                :     {
                               2942                 :                :         char       *arg;
                               2943                 :                :         int         arglen;
                               2944                 :                : 
                               2945         [ +  + ]:             12 :         if (argv[i][0] != ':')
                               2946                 :                :         {
 5161 bruce@momjian.us         2947                 :              9 :             arg = argv[i];      /* a string literal */
                               2948                 :                :         }
 5234 itagaki.takahiro@gma     2949         [ +  + ]:              3 :         else if (argv[i][1] == ':')
                               2950                 :                :         {
                               2951                 :              1 :             arg = argv[i] + 1;  /* a string literal starting with colons */
                               2952                 :                :         }
  753 ishii@postgresql.org     2953         [ +  + ]:              2 :         else if ((arg = getVariable(variables, argv[i] + 1)) == NULL)
                               2954                 :                :         {
 1558 peter@eisentraut.org     2955                 :              1 :             pg_log_error("%s: undefined variable \"%s\"", argv[0], argv[i]);
 5234 itagaki.takahiro@gma     2956                 :              1 :             return false;
                               2957                 :                :         }
                               2958                 :                : 
                               2959                 :             11 :         arglen = strlen(arg);
                               2960         [ -  + ]:             11 :         if (len + arglen + (i > 0 ? 1 : 0) >= SHELL_COMMAND_SIZE - 1)
                               2961                 :                :         {
 1558 peter@eisentraut.org     2962                 :UBC           0 :             pg_log_error("%s: shell command is too long", argv[0]);
 5234 itagaki.takahiro@gma     2963                 :              0 :             return false;
                               2964                 :                :         }
                               2965                 :                : 
 5234 itagaki.takahiro@gma     2966         [ +  + ]:CBC          11 :         if (i > 0)
                               2967                 :              5 :             command[len++] = ' ';
                               2968                 :             11 :         memcpy(command + len, arg, arglen);
                               2969                 :             11 :         len += arglen;
                               2970                 :                :     }
                               2971                 :                : 
                               2972                 :              5 :     command[len] = '\0';
                               2973                 :                : 
  594 tgl@sss.pgh.pa.us        2974                 :              5 :     fflush(NULL);               /* needed before either system() or popen() */
                               2975                 :                : 
                               2976                 :                :     /* Fast path for non-assignment case */
 5234 itagaki.takahiro@gma     2977         [ +  + ]:              5 :     if (variable == NULL)
                               2978                 :                :     {
                               2979         [ +  + ]:              2 :         if (system(command))
                               2980                 :                :         {
                               2981         [ +  - ]:              1 :             if (!timer_exceeded)
 1558 peter@eisentraut.org     2982                 :              1 :                 pg_log_error("%s: could not launch shell command", argv[0]);
 5234 itagaki.takahiro@gma     2983                 :              1 :             return false;
                               2984                 :                :         }
                               2985                 :              1 :         return true;
                               2986                 :                :     }
                               2987                 :                : 
                               2988                 :                :     /* Execute the command with pipe and read the standard output. */
                               2989         [ -  + ]:              3 :     if ((fp = popen(command, "r")) == NULL)
                               2990                 :                :     {
 1558 peter@eisentraut.org     2991                 :UBC           0 :         pg_log_error("%s: could not launch shell command", argv[0]);
 5234 itagaki.takahiro@gma     2992                 :              0 :         return false;
                               2993                 :                :     }
 5234 itagaki.takahiro@gma     2994         [ +  + ]:CBC           3 :     if (fgets(res, sizeof(res), fp) == NULL)
                               2995                 :                :     {
                               2996         [ +  - ]:              1 :         if (!timer_exceeded)
 1558 peter@eisentraut.org     2997                 :              1 :             pg_log_error("%s: could not read result of shell command", argv[0]);
 3407 tgl@sss.pgh.pa.us        2998                 :              1 :         (void) pclose(fp);
 5234 itagaki.takahiro@gma     2999                 :              1 :         return false;
                               3000                 :                :     }
                               3001         [ -  + ]:              2 :     if (pclose(fp) < 0)
                               3002                 :                :     {
  516 peter@eisentraut.org     3003                 :UBC           0 :         pg_log_error("%s: could not run shell command: %m", argv[0]);
 5234 itagaki.takahiro@gma     3004                 :              0 :         return false;
                               3005                 :                :     }
                               3006                 :                : 
                               3007                 :                :     /* Check whether the result is an integer and assign it to the variable */
 5234 itagaki.takahiro@gma     3008                 :CBC           2 :     retval = (int) strtol(res, &endptr, 10);
                               3009   [ +  +  +  + ]:              3 :     while (*endptr != '\0' && isspace((unsigned char) *endptr))
                               3010                 :              1 :         endptr++;
                               3011   [ +  -  +  + ]:              2 :     if (*res == '\0' || *endptr != '\0')
                               3012                 :                :     {
 1558 peter@eisentraut.org     3013                 :              1 :         pg_log_error("%s: shell command must return an integer (not \"%s\")", argv[0], res);
 5234 itagaki.takahiro@gma     3014                 :              1 :         return false;
                               3015                 :                :     }
  753 ishii@postgresql.org     3016         [ -  + ]:              1 :     if (!putVariableInt(variables, "setshell", variable, retval))
 5234 itagaki.takahiro@gma     3017                 :UBC           0 :         return false;
                               3018                 :                : 
 1558 peter@eisentraut.org     3019         [ -  + ]:CBC           1 :     pg_log_debug("%s: shell parameter name: \"%s\", value: \"%s\"", argv[0], argv[1], res);
                               3020                 :                : 
 5234 itagaki.takahiro@gma     3021                 :              1 :     return true;
                               3022                 :                : }
                               3023                 :                : 
                               3024                 :                : /*
                               3025                 :                :  * Report the abortion of the client when processing SQL commands.
                               3026                 :                :  */
                               3027                 :                : static void
 2215 teodor@sigaev.ru         3028                 :             32 : commandFailed(CState *st, const char *cmd, const char *message)
                               3029                 :                : {
 1558 peter@eisentraut.org     3030                 :             32 :     pg_log_error("client %d aborted in command %d (%s) of script %d; %s",
                               3031                 :                :                  st->id, st->command, cmd, st->use_file, message);
 5368 ishii@postgresql.org     3032                 :             32 : }
                               3033                 :                : 
                               3034                 :                : /*
                               3035                 :                :  * Report the error in the command while the script is executing.
                               3036                 :                :  */
                               3037                 :                : static void
  753                          3038                 :              2 : commandError(CState *st, const char *message)
                               3039                 :                : {
                               3040         [ -  + ]:              2 :     Assert(sql_script[st->use_file].commands[st->command]->type == SQL_COMMAND);
                               3041                 :              2 :     pg_log_info("client %d got an error in command %d (SQL) of script %d; %s",
                               3042                 :                :                 st->id, st->command, st->use_file, message);
                               3043                 :              2 : }
                               3044                 :                : 
                               3045                 :                : /* return a script number with a weighted choice. */
                               3046                 :                : static int
 3000 alvherre@alvh.no-ip.     3047                 :           7483 : chooseScript(TState *thread)
                               3048                 :                : {
 2948                          3049                 :           7483 :     int         i = 0;
                               3050                 :                :     int64       w;
                               3051                 :                : 
 3000                          3052         [ +  + ]:           7483 :     if (num_scripts == 1)
                               3053                 :           6383 :         return 0;
                               3054                 :                : 
 1976                          3055                 :           1100 :     w = getrand(&thread->ts_choose_rs, 0, total_weight - 1);
                               3056                 :                :     do
                               3057                 :                :     {
 2948                          3058                 :           2374 :         w -= sql_script[i++].weight;
                               3059         [ +  + ]:           2374 :     } while (w >= 0);
                               3060                 :                : 
                               3061                 :           1100 :     return i - 1;
                               3062                 :                : }
                               3063                 :                : 
                               3064                 :                : /*
                               3065                 :                :  * Allocate space for CState->prepared: we need one boolean for each command
                               3066                 :                :  * of each script.
                               3067                 :                :  */
                               3068                 :                : static void
  325                          3069                 :             29 : allocCStatePrepared(CState *st)
                               3070                 :                : {
                               3071         [ -  + ]:             29 :     Assert(st->prepared == NULL);
                               3072                 :                : 
                               3073                 :             29 :     st->prepared = pg_malloc(sizeof(bool *) * num_scripts);
                               3074         [ +  + ]:             59 :     for (int i = 0; i < num_scripts; i++)
                               3075                 :                :     {
                               3076                 :             30 :         ParsedScript *script = &sql_script[i];
                               3077                 :                :         int         numcmds;
                               3078                 :                : 
                               3079         [ +  + ]:            150 :         for (numcmds = 0; script->commands[numcmds] != NULL; numcmds++)
                               3080                 :                :             ;
                               3081                 :             30 :         st->prepared[i] = pg_malloc0(sizeof(bool) * numcmds);
                               3082                 :                :     }
                               3083                 :             29 : }
                               3084                 :                : 
                               3085                 :                : /*
                               3086                 :                :  * Prepare the SQL command from st->use_file at command_num.
                               3087                 :                :  */
                               3088                 :                : static void
  418                          3089                 :           1748 : prepareCommand(CState *st, int command_num)
                               3090                 :                : {
                               3091                 :           1748 :     Command    *command = sql_script[st->use_file].commands[command_num];
                               3092                 :                : 
                               3093                 :                :     /* No prepare for non-SQL commands */
                               3094         [ -  + ]:           1748 :     if (command->type != SQL_COMMAND)
  418 alvherre@alvh.no-ip.     3095                 :UBC           0 :         return;
                               3096                 :                : 
  418 alvherre@alvh.no-ip.     3097         [ +  + ]:CBC        1748 :     if (!st->prepared)
  325                          3098                 :             24 :         allocCStatePrepared(st);
                               3099                 :                : 
  418                          3100         [ +  + ]:           1748 :     if (!st->prepared[st->use_file][command_num])
                               3101                 :                :     {
                               3102                 :                :         PGresult   *res;
                               3103                 :                : 
                               3104         [ +  + ]:             99 :         pg_log_debug("client %d preparing %s", st->id, command->prepname);
                               3105                 :             99 :         res = PQprepare(st->con, command->prepname,
                               3106                 :             99 :                         command->argv[0], command->argc - 1, NULL);
                               3107         [ +  + ]:             99 :         if (PQresultStatus(res) != PGRES_COMMAND_OK)
                               3108                 :              1 :             pg_log_error("%s", PQerrorMessage(st->con));
                               3109                 :             99 :         PQclear(res);
                               3110                 :             99 :         st->prepared[st->use_file][command_num] = true;
                               3111                 :                :     }
                               3112                 :                : }
                               3113                 :                : 
                               3114                 :                : /*
                               3115                 :                :  * Prepare all the commands in the script that come after the \startpipeline
                               3116                 :                :  * that's at position st->command, and the first \endpipeline we find.
                               3117                 :                :  *
                               3118                 :                :  * This sets the ->prepared flag for each relevant command as well as the
                               3119                 :                :  * \startpipeline itself, but doesn't move the st->command counter.
                               3120                 :                :  */
                               3121                 :                : static void
                               3122                 :             42 : prepareCommandsInPipeline(CState *st)
                               3123                 :                : {
                               3124                 :                :     int         j;
                               3125                 :             42 :     Command   **commands = sql_script[st->use_file].commands;
                               3126                 :                : 
                               3127   [ +  -  +  - ]:             42 :     Assert(commands[st->command]->type == META_COMMAND &&
                               3128                 :                :            commands[st->command]->meta == META_STARTPIPELINE);
                               3129                 :                : 
  325                          3130         [ +  + ]:             42 :     if (!st->prepared)
                               3131                 :              5 :         allocCStatePrepared(st);
                               3132                 :                : 
                               3133                 :                :     /*
                               3134                 :                :      * We set the 'prepared' flag on the \startpipeline itself to flag that we
                               3135                 :                :      * don't need to do this next time without calling prepareCommand(), even
                               3136                 :                :      * though we don't actually prepare this command.
                               3137                 :                :      */
                               3138         [ +  + ]:             42 :     if (st->prepared[st->use_file][st->command])
  418                          3139                 :             36 :         return;
                               3140                 :                : 
                               3141         [ +  - ]:             64 :     for (j = st->command + 1; commands[j] != NULL; j++)
                               3142                 :                :     {
                               3143         [ +  + ]:             64 :         if (commands[j]->type == META_COMMAND &&
                               3144         [ +  - ]:              6 :             commands[j]->meta == META_ENDPIPELINE)
                               3145                 :              6 :             break;
                               3146                 :                : 
                               3147                 :             58 :         prepareCommand(st, j);
                               3148                 :                :     }
                               3149                 :                : 
                               3150                 :              6 :     st->prepared[st->use_file][st->command] = true;
                               3151                 :                : }
                               3152                 :                : 
                               3153                 :                : /* Send a SQL command, using the chosen querymode */
                               3154                 :                : static bool
 2757 heikki.linnakangas@i     3155                 :          10614 : sendCommand(CState *st, Command *command)
                               3156                 :                : {
                               3157                 :                :     int         r;
                               3158                 :                : 
                               3159         [ +  + ]:          10614 :     if (querymode == QUERY_SIMPLE)
                               3160                 :                :     {
                               3161                 :                :         char       *sql;
                               3162                 :                : 
                               3163                 :           8351 :         sql = pg_strdup(command->argv[0]);
  753 ishii@postgresql.org     3164                 :           8351 :         sql = assignVariables(&st->variables, sql);
                               3165                 :                : 
 1558 peter@eisentraut.org     3166         [ +  + ]:           8351 :         pg_log_debug("client %d sending %s", st->id, sql);
 2757 heikki.linnakangas@i     3167                 :           8351 :         r = PQsendQuery(st->con, sql);
                               3168                 :           8351 :         free(sql);
                               3169                 :                :     }
                               3170         [ +  + ]:           2263 :     else if (querymode == QUERY_EXTENDED)
                               3171                 :                :     {
                               3172                 :            573 :         const char *sql = command->argv[0];
                               3173                 :                :         const char *params[MAX_ARGS];
                               3174                 :                : 
  753 ishii@postgresql.org     3175                 :            573 :         getQueryParams(&st->variables, command, params);
                               3176                 :                : 
 1558 peter@eisentraut.org     3177         [ -  + ]:            573 :         pg_log_debug("client %d sending %s", st->id, sql);
 2757 heikki.linnakangas@i     3178                 :            573 :         r = PQsendQueryParams(st->con, sql, command->argc - 1,
                               3179                 :                :                               NULL, params, NULL, NULL, 0);
                               3180                 :                :     }
                               3181         [ +  - ]:           1690 :     else if (querymode == QUERY_PREPARED)
                               3182                 :                :     {
                               3183                 :                :         const char *params[MAX_ARGS];
                               3184                 :                : 
  418 alvherre@alvh.no-ip.     3185                 :           1690 :         prepareCommand(st, st->command);
  753 ishii@postgresql.org     3186                 :           1690 :         getQueryParams(&st->variables, command, params);
                               3187                 :                : 
  418 alvherre@alvh.no-ip.     3188         [ +  + ]:           1690 :         pg_log_debug("client %d sending %s", st->id, command->prepname);
                               3189                 :           1690 :         r = PQsendQueryPrepared(st->con, command->prepname, command->argc - 1,
                               3190                 :                :                                 params, NULL, NULL, 0);
                               3191                 :                :     }
                               3192                 :                :     else                        /* unknown sql mode */
 2757 heikki.linnakangas@i     3193                 :UBC           0 :         r = 0;
                               3194                 :                : 
 2757 heikki.linnakangas@i     3195         [ -  + ]:CBC       10614 :     if (r == 0)
                               3196                 :                :     {
 1558 peter@eisentraut.org     3197         [ #  # ]:UBC           0 :         pg_log_debug("client %d could not send %s", st->id, command->argv[0]);
 2757 heikki.linnakangas@i     3198                 :              0 :         return false;
                               3199                 :                :     }
                               3200                 :                :     else
 2757 heikki.linnakangas@i     3201                 :CBC       10614 :         return true;
                               3202                 :                : }
                               3203                 :                : 
                               3204                 :                : /*
                               3205                 :                :  * Get the error status from the error code.
                               3206                 :                :  */
                               3207                 :                : static EStatus
  753 ishii@postgresql.org     3208                 :              9 : getSQLErrorStatus(const char *sqlState)
                               3209                 :                : {
                               3210         [ +  - ]:              9 :     if (sqlState != NULL)
                               3211                 :                :     {
                               3212         [ +  + ]:              9 :         if (strcmp(sqlState, ERRCODE_T_R_SERIALIZATION_FAILURE) == 0)
                               3213                 :              1 :             return ESTATUS_SERIALIZATION_ERROR;
                               3214         [ +  + ]:              8 :         else if (strcmp(sqlState, ERRCODE_T_R_DEADLOCK_DETECTED) == 0)
                               3215                 :              1 :             return ESTATUS_DEADLOCK_ERROR;
                               3216                 :                :     }
                               3217                 :                : 
                               3218                 :              7 :     return ESTATUS_OTHER_SQL_ERROR;
                               3219                 :                : }
                               3220                 :                : 
                               3221                 :                : /*
                               3222                 :                :  * Returns true if this type of error can be retried.
                               3223                 :                :  */
                               3224                 :                : static bool
                               3225                 :             25 : canRetryError(EStatus estatus)
                               3226                 :                : {
                               3227   [ +  +  +  + ]:             25 :     return (estatus == ESTATUS_SERIALIZATION_ERROR ||
                               3228                 :                :             estatus == ESTATUS_DEADLOCK_ERROR);
                               3229                 :                : }
                               3230                 :                : 
                               3231                 :                : /*
                               3232                 :                :  * Process query response from the backend.
                               3233                 :                :  *
                               3234                 :                :  * If varprefix is not NULL, it's the variable name prefix where to store
                               3235                 :                :  * the results of the *last* command (META_GSET) or *all* commands
                               3236                 :                :  * (META_ASET).
                               3237                 :                :  *
                               3238                 :                :  * Returns true if everything is A-OK, false if any error occurs.
                               3239                 :                :  */
                               3240                 :                : static bool
 1472 michael@paquier.xyz      3241                 :          10657 : readCommandResponse(CState *st, MetaCommand meta, char *varprefix)
                               3242                 :                : {
                               3243                 :                :     PGresult   *res;
                               3244                 :                :     PGresult   *next_res;
 1921 alvherre@alvh.no-ip.     3245                 :          10657 :     int         qrynum = 0;
                               3246                 :                : 
                               3247                 :                :     /*
                               3248                 :                :      * varprefix should be set only with \gset or \aset, and \endpipeline and
                               3249                 :                :      * SQL commands do not need it.
                               3250                 :                :      */
 1472 michael@paquier.xyz      3251   [ +  +  +  -  :          10657 :     Assert((meta == META_NONE && varprefix == NULL) ||
                                     +  +  +  -  +  
                                        +  +  -  +  
                                                 - ]
                               3252                 :                :            ((meta == META_ENDPIPELINE) && varprefix == NULL) ||
                               3253                 :                :            ((meta == META_GSET || meta == META_ASET) && varprefix != NULL));
                               3254                 :                : 
 1847 alvherre@alvh.no-ip.     3255                 :          10657 :     res = PQgetResult(st->con);
                               3256                 :                : 
                               3257         [ +  + ]:          21305 :     while (res != NULL)
                               3258                 :                :     {
                               3259                 :                :         bool        is_last;
                               3260                 :                : 
                               3261                 :                :         /* peek at the next result to know whether the current is last */
 1832                          3262                 :          10662 :         next_res = PQgetResult(st->con);
 1831                          3263                 :          10662 :         is_last = (next_res == NULL);
                               3264                 :                : 
 1921                          3265   [ +  +  +  +  :          10662 :         switch (PQresultStatus(res))
                                                 - ]
                               3266                 :                :         {
                               3267                 :           8397 :             case PGRES_COMMAND_OK:  /* non-SELECT commands */
                               3268                 :                :             case PGRES_EMPTY_QUERY: /* may be used for testing no-op overhead */
 1472 michael@paquier.xyz      3269   [ +  -  +  + ]:           8397 :                 if (is_last && meta == META_GSET)
                               3270                 :                :                 {
 1558 peter@eisentraut.org     3271                 :              1 :                     pg_log_error("client %d script %d command %d query %d: expected one row, got %d",
                               3272                 :                :                                  st->id, st->use_file, st->command, qrynum, 0);
  753 ishii@postgresql.org     3273                 :              1 :                     st->estatus = ESTATUS_META_COMMAND_ERROR;
 1832 alvherre@alvh.no-ip.     3274                 :              1 :                     goto error;
                               3275                 :                :                 }
 1921                          3276                 :           8396 :                 break;
                               3277                 :                : 
                               3278                 :           2209 :             case PGRES_TUPLES_OK:
 1472 michael@paquier.xyz      3279   [ +  +  +  +  :           2209 :                 if ((is_last && meta == META_GSET) || meta == META_ASET)
                                              +  + ]
                               3280                 :                :                 {
                               3281                 :            439 :                     int         ntuples = PQntuples(res);
                               3282                 :                : 
                               3283   [ +  +  +  + ]:            439 :                     if (meta == META_GSET && ntuples != 1)
                               3284                 :                :                     {
                               3285                 :                :                         /* under \gset, report the error */
 1558 peter@eisentraut.org     3286                 :              2 :                         pg_log_error("client %d script %d command %d query %d: expected one row, got %d",
                               3287                 :                :                                      st->id, st->use_file, st->command, qrynum, PQntuples(res));
  753 ishii@postgresql.org     3288                 :              2 :                         st->estatus = ESTATUS_META_COMMAND_ERROR;
 1832 alvherre@alvh.no-ip.     3289                 :              2 :                         goto error;
                               3290                 :                :                     }
 1472 michael@paquier.xyz      3291   [ +  +  +  + ]:            437 :                     else if (meta == META_ASET && ntuples <= 0)
                               3292                 :                :                     {
                               3293                 :                :                         /* coldly skip empty result under \aset */
                               3294                 :              1 :                         break;
                               3295                 :                :                     }
                               3296                 :                : 
                               3297                 :                :                     /* store results into variables */
 1921 alvherre@alvh.no-ip.     3298         [ +  + ]:            872 :                     for (int fld = 0; fld < PQnfields(res); fld++)
                               3299                 :                :                     {
                               3300                 :            438 :                         char       *varname = PQfname(res, fld);
                               3301                 :                : 
                               3302                 :                :                         /* allocate varname only if necessary, freed below */
 1847                          3303         [ +  + ]:            438 :                         if (*varprefix != '\0')
                               3304                 :              1 :                             varname = psprintf("%s%s", varprefix, varname);
                               3305                 :                : 
                               3306                 :                :                         /* store last row result as a string */
  753 ishii@postgresql.org     3307   [ +  +  +  + ]:            438 :                         if (!putVariable(&st->variables, meta == META_ASET ? "aset" : "gset", varname,
 1472 michael@paquier.xyz      3308                 :            438 :                                          PQgetvalue(res, ntuples - 1, fld)))
                               3309                 :                :                         {
                               3310                 :                :                             /* internal error */
 1558 peter@eisentraut.org     3311                 :              2 :                             pg_log_error("client %d script %d command %d query %d: error storing into variable %s",
                               3312                 :                :                                          st->id, st->use_file, st->command, qrynum, varname);
  753 ishii@postgresql.org     3313                 :              2 :                             st->estatus = ESTATUS_META_COMMAND_ERROR;
 1832 alvherre@alvh.no-ip.     3314                 :              2 :                             goto error;
                               3315                 :                :                         }
                               3316                 :                : 
 1847                          3317         [ +  + ]:            436 :                         if (*varprefix != '\0')
 1921                          3318                 :              1 :                             pg_free(varname);
                               3319                 :                :                     }
                               3320                 :                :                 }
                               3321                 :                :                 /* otherwise the result is simply thrown away by PQclear below */
                               3322                 :           2204 :                 break;
                               3323                 :                : 
 1126                          3324                 :             47 :             case PGRES_PIPELINE_SYNC:
   81 michael@paquier.xyz      3325         [ -  + ]:GNC          47 :                 pg_log_debug("client %d pipeline ending, ongoing syncs: %d",
                               3326                 :                :                              st->id, st->num_syncs);
                               3327                 :             47 :                 st->num_syncs--;
                               3328   [ +  +  -  + ]:             47 :                 if (st->num_syncs == 0 && PQexitPipelineMode(st->con) != 1)
 1126 alvherre@alvh.no-ip.     3329                 :UBC           0 :                     pg_log_error("client %d failed to exit pipeline mode: %s", st->id,
                               3330                 :                :                                  PQerrorMessage(st->con));
 1126 alvherre@alvh.no-ip.     3331                 :CBC          47 :                 break;
                               3332                 :                : 
  753 ishii@postgresql.org     3333                 :              9 :             case PGRES_NONFATAL_ERROR:
                               3334                 :                :             case PGRES_FATAL_ERROR:
  703 tgl@sss.pgh.pa.us        3335                 :              9 :                 st->estatus = getSQLErrorStatus(PQresultErrorField(res,
                               3336                 :                :                                                                    PG_DIAG_SQLSTATE));
  753 ishii@postgresql.org     3337         [ +  + ]:              9 :                 if (canRetryError(st->estatus))
                               3338                 :                :                 {
                               3339         [ +  - ]:              2 :                     if (verbose_errors)
                               3340                 :              2 :                         commandError(st, PQerrorMessage(st->con));
                               3341                 :              2 :                     goto error;
                               3342                 :                :                 }
                               3343                 :                :                 /* fall through */
                               3344                 :                : 
                               3345                 :                :             default:
                               3346                 :                :                 /* anything else is unexpected */
 1558 peter@eisentraut.org     3347                 :              7 :                 pg_log_error("client %d script %d aborted in command %d query %d: %s",
                               3348                 :                :                              st->id, st->use_file, st->command, qrynum,
                               3349                 :                :                              PQerrorMessage(st->con));
 1832 alvherre@alvh.no-ip.     3350                 :              7 :                 goto error;
                               3351                 :                :         }
                               3352                 :                : 
 1921                          3353                 :          10648 :         PQclear(res);
                               3354                 :          10648 :         qrynum++;
 1847                          3355                 :          10648 :         res = next_res;
                               3356                 :                :     }
                               3357                 :                : 
 1921                          3358         [ -  + ]:          10643 :     if (qrynum == 0)
                               3359                 :                :     {
 1558 peter@eisentraut.org     3360                 :UBC           0 :         pg_log_error("client %d command %d: no results", st->id, st->command);
 1921 alvherre@alvh.no-ip.     3361                 :              0 :         return false;
                               3362                 :                :     }
                               3363                 :                : 
 1921 alvherre@alvh.no-ip.     3364                 :CBC       10643 :     return true;
                               3365                 :                : 
 1832                          3366                 :             14 : error:
                               3367                 :             14 :     PQclear(res);
                               3368                 :             14 :     PQclear(next_res);
                               3369                 :                :     do
                               3370                 :                :     {
                               3371                 :             14 :         res = PQgetResult(st->con);
                               3372                 :             14 :         PQclear(res);
                               3373         [ -  + ]:             14 :     } while (res);
                               3374                 :                : 
                               3375                 :             14 :     return false;
                               3376                 :                : }
                               3377                 :                : 
                               3378                 :                : /*
                               3379                 :                :  * Parse the argument to a \sleep command, and return the requested amount
                               3380                 :                :  * of delay, in microseconds.  Returns true on success, false on error.
                               3381                 :                :  */
                               3382                 :                : static bool
  753 ishii@postgresql.org     3383                 :              6 : evaluateSleep(Variables *variables, int argc, char **argv, int *usecs)
                               3384                 :                : {
                               3385                 :                :     char       *var;
                               3386                 :                :     int         usec;
                               3387                 :                : 
 2757 heikki.linnakangas@i     3388         [ +  + ]:              6 :     if (*argv[1] == ':')
                               3389                 :                :     {
  753 ishii@postgresql.org     3390         [ +  + ]:              3 :         if ((var = getVariable(variables, argv[1] + 1)) == NULL)
                               3391                 :                :         {
 1558 peter@eisentraut.org     3392                 :              1 :             pg_log_error("%s: undefined variable \"%s\"", argv[0], argv[1] + 1);
 2757 heikki.linnakangas@i     3393                 :              1 :             return false;
                               3394                 :                :         }
                               3395                 :                : 
                               3396                 :              2 :         usec = atoi(var);
                               3397                 :                : 
                               3398                 :                :         /* Raise an error if the value of a variable is not a number */
 1119 fujii@postgresql.org     3399   [ +  +  -  + ]:              2 :         if (usec == 0 && !isdigit((unsigned char) *var))
                               3400                 :                :         {
 1119 fujii@postgresql.org     3401                 :UBC           0 :             pg_log_error("%s: invalid sleep time \"%s\" for variable \"%s\"",
                               3402                 :                :                          argv[0], var, argv[1] + 1);
                               3403                 :              0 :             return false;
                               3404                 :                :         }
                               3405                 :                :     }
                               3406                 :                :     else
 2757 heikki.linnakangas@i     3407                 :CBC           3 :         usec = atoi(argv[1]);
                               3408                 :                : 
                               3409         [ +  + ]:              5 :     if (argc > 2)
                               3410                 :                :     {
                               3411         [ +  + ]:              4 :         if (pg_strcasecmp(argv[2], "ms") == 0)
                               3412                 :              2 :             usec *= 1000;
                               3413         [ +  + ]:              2 :         else if (pg_strcasecmp(argv[2], "s") == 0)
                               3414                 :              1 :             usec *= 1000000;
                               3415                 :                :     }
                               3416                 :                :     else
                               3417                 :              1 :         usec *= 1000000;
                               3418                 :                : 
                               3419                 :              5 :     *usecs = usec;
                               3420                 :              5 :     return true;
                               3421                 :                : }
                               3422                 :                : 
                               3423                 :                : 
                               3424                 :                : /*
                               3425                 :                :  * Returns true if the error can be retried.
                               3426                 :                :  */
                               3427                 :                : static bool
  753 ishii@postgresql.org     3428                 :              2 : doRetry(CState *st, pg_time_usec_t *now)
                               3429                 :                : {
                               3430         [ -  + ]:              2 :     Assert(st->estatus != ESTATUS_NO_ERROR);
                               3431                 :                : 
                               3432                 :                :     /* We can only retry serialization or deadlock errors. */
                               3433         [ -  + ]:              2 :     if (!canRetryError(st->estatus))
  753 ishii@postgresql.org     3434                 :UBC           0 :         return false;
                               3435                 :                : 
                               3436                 :                :     /*
                               3437                 :                :      * We must have at least one option to limit the retrying of transactions
                               3438                 :                :      * that got an error.
                               3439                 :                :      */
  753 ishii@postgresql.org     3440   [ -  +  -  -  :CBC           2 :     Assert(max_tries || latency_limit || duration > 0);
                                              -  - ]
                               3441                 :                : 
                               3442                 :                :     /*
                               3443                 :                :      * We cannot retry the error if we have reached the maximum number of
                               3444                 :                :      * tries.
                               3445                 :                :      */
                               3446   [ +  -  -  + ]:              2 :     if (max_tries && st->tries >= max_tries)
  753 ishii@postgresql.org     3447                 :UBC           0 :         return false;
                               3448                 :                : 
                               3449                 :                :     /*
                               3450                 :                :      * We cannot retry the error if we spent too much time on this
                               3451                 :                :      * transaction.
                               3452                 :                :      */
  753 ishii@postgresql.org     3453         [ -  + ]:CBC           2 :     if (latency_limit)
                               3454                 :                :     {
  753 ishii@postgresql.org     3455                 :UBC           0 :         pg_time_now_lazy(now);
                               3456         [ #  # ]:              0 :         if (*now - st->txn_scheduled > latency_limit)
                               3457                 :              0 :             return false;
                               3458                 :                :     }
                               3459                 :                : 
                               3460                 :                :     /*
                               3461                 :                :      * We cannot retry the error if the benchmark duration is over.
                               3462                 :                :      */
  753 ishii@postgresql.org     3463         [ -  + ]:CBC           2 :     if (timer_exceeded)
  753 ishii@postgresql.org     3464                 :UBC           0 :         return false;
                               3465                 :                : 
                               3466                 :                :     /* OK */
  753 ishii@postgresql.org     3467                 :CBC           2 :     return true;
                               3468                 :                : }
                               3469                 :                : 
                               3470                 :                : /*
                               3471                 :                :  * Read results and discard it until a sync point.
                               3472                 :                :  */
                               3473                 :                : static int
  753 ishii@postgresql.org     3474                 :UBC           0 : discardUntilSync(CState *st)
                               3475                 :                : {
                               3476                 :                :     /* send a sync */
                               3477         [ #  # ]:              0 :     if (!PQpipelineSync(st->con))
                               3478                 :                :     {
                               3479                 :              0 :         pg_log_error("client %d aborted: failed to send a pipeline sync",
                               3480                 :                :                      st->id);
                               3481                 :              0 :         return 0;
                               3482                 :                :     }
                               3483                 :                : 
                               3484                 :                :     /* receive PGRES_PIPELINE_SYNC and null following it */
                               3485                 :                :     for (;;)
                               3486                 :              0 :     {
  703 tgl@sss.pgh.pa.us        3487                 :              0 :         PGresult   *res = PQgetResult(st->con);
                               3488                 :                : 
  753 ishii@postgresql.org     3489         [ #  # ]:              0 :         if (PQresultStatus(res) == PGRES_PIPELINE_SYNC)
                               3490                 :                :         {
                               3491                 :              0 :             PQclear(res);
                               3492                 :              0 :             res = PQgetResult(st->con);
                               3493         [ #  # ]:              0 :             Assert(res == NULL);
                               3494                 :              0 :             break;
                               3495                 :                :         }
                               3496                 :              0 :         PQclear(res);
                               3497                 :                :     }
                               3498                 :                : 
                               3499                 :                :     /* exit pipeline */
                               3500         [ #  # ]:              0 :     if (PQexitPipelineMode(st->con) != 1)
                               3501                 :                :     {
                               3502                 :              0 :         pg_log_error("client %d aborted: failed to exit pipeline mode for rolling back the failed transaction",
                               3503                 :                :                      st->id);
                               3504                 :              0 :         return 0;
                               3505                 :                :     }
                               3506                 :              0 :     return 1;
                               3507                 :                : }
                               3508                 :                : 
                               3509                 :                : /*
                               3510                 :                :  * Get the transaction status at the end of a command especially for
                               3511                 :                :  * checking if we are in a (failed) transaction block.
                               3512                 :                :  */
                               3513                 :                : static TStatus
  753 ishii@postgresql.org     3514                 :CBC        7436 : getTransactionStatus(PGconn *con)
                               3515                 :                : {
                               3516                 :                :     PGTransactionStatusType tx_status;
                               3517                 :                : 
                               3518                 :           7436 :     tx_status = PQtransactionStatus(con);
                               3519   [ +  +  -  - ]:           7436 :     switch (tx_status)
                               3520                 :                :     {
                               3521                 :           7434 :         case PQTRANS_IDLE:
                               3522                 :           7434 :             return TSTATUS_IDLE;
                               3523                 :              2 :         case PQTRANS_INTRANS:
                               3524                 :                :         case PQTRANS_INERROR:
                               3525                 :              2 :             return TSTATUS_IN_BLOCK;
  753 ishii@postgresql.org     3526                 :UBC           0 :         case PQTRANS_UNKNOWN:
                               3527                 :                :             /* PQTRANS_UNKNOWN is expected given a broken connection */
                               3528         [ #  # ]:              0 :             if (PQstatus(con) == CONNECTION_BAD)
                               3529                 :              0 :                 return TSTATUS_CONN_ERROR;
                               3530                 :                :             /* fall through */
                               3531                 :                :         case PQTRANS_ACTIVE:
                               3532                 :                :         default:
                               3533                 :                : 
                               3534                 :                :             /*
                               3535                 :                :              * We cannot find out whether we are in a transaction block or
                               3536                 :                :              * not. Internal error which should never occur.
                               3537                 :                :              */
                               3538                 :              0 :             pg_log_error("unexpected transaction status %d", tx_status);
                               3539                 :              0 :             return TSTATUS_OTHER_ERROR;
                               3540                 :                :     }
                               3541                 :                : 
                               3542                 :                :     /* not reached */
                               3543                 :                :     Assert(false);
                               3544                 :                :     return TSTATUS_OTHER_ERROR;
                               3545                 :                : }
                               3546                 :                : 
                               3547                 :                : /*
                               3548                 :                :  * Print verbose messages of an error
                               3549                 :                :  */
                               3550                 :                : static void
  753 ishii@postgresql.org     3551                 :CBC           2 : printVerboseErrorMessages(CState *st, pg_time_usec_t *now, bool is_retry)
                               3552                 :                : {
                               3553                 :                :     static PQExpBuffer buf = NULL;
                               3554                 :                : 
                               3555         [ +  - ]:              2 :     if (buf == NULL)
                               3556                 :              2 :         buf = createPQExpBuffer();
                               3557                 :                :     else
  753 ishii@postgresql.org     3558                 :UBC           0 :         resetPQExpBuffer(buf);
                               3559                 :                : 
  753 ishii@postgresql.org     3560                 :CBC           2 :     printfPQExpBuffer(buf, "client %d ", st->id);
  586 drowley@postgresql.o     3561         [ +  - ]:              2 :     appendPQExpBufferStr(buf, (is_retry ?
                               3562                 :                :                                "repeats the transaction after the error" :
                               3563                 :                :                                "ends the failed transaction"));
  725 peter@eisentraut.org     3564                 :              2 :     appendPQExpBuffer(buf, " (try %u", st->tries);
                               3565                 :                : 
                               3566                 :                :     /* Print max_tries if it is not unlimited. */
  753 ishii@postgresql.org     3567         [ +  - ]:              2 :     if (max_tries)
  725 peter@eisentraut.org     3568                 :              2 :         appendPQExpBuffer(buf, "/%u", max_tries);
                               3569                 :                : 
                               3570                 :                :     /*
                               3571                 :                :      * If the latency limit is used, print a percentage of the current
                               3572                 :                :      * transaction latency from the latency limit.
                               3573                 :                :      */
  753 ishii@postgresql.org     3574         [ -  + ]:              2 :     if (latency_limit)
                               3575                 :                :     {
  753 ishii@postgresql.org     3576                 :UBC           0 :         pg_time_now_lazy(now);
                               3577                 :              0 :         appendPQExpBuffer(buf, ", %.3f%% of the maximum time of tries was used",
                               3578                 :              0 :                           (100.0 * (*now - st->txn_scheduled) / latency_limit));
                               3579                 :                :     }
  586 drowley@postgresql.o     3580                 :CBC           2 :     appendPQExpBufferStr(buf, ")\n");
                               3581                 :                : 
  753 ishii@postgresql.org     3582                 :              2 :     pg_log_info("%s", buf->data);
                               3583                 :              2 : }
                               3584                 :                : 
                               3585                 :                : /*
                               3586                 :                :  * Advance the state machine of a connection.
                               3587                 :                :  */
                               3588                 :                : static void
 1971 alvherre@alvh.no-ip.     3589                 :          17567 : advanceConnectionState(TState *thread, CState *st, StatsData *agg)
                               3590                 :                : {
                               3591                 :                : 
                               3592                 :                :     /*
                               3593                 :                :      * gettimeofday() isn't free, so we get the current timestamp lazily the
                               3594                 :                :      * first time it's needed, and reuse the same value throughout this
                               3595                 :                :      * function after that.  This also ensures that e.g. the calculated
                               3596                 :                :      * latency reported in the log file and in the totals are the same. Zero
                               3597                 :                :      * means "not set yet".  Reset "now" when we execute shell commands or
                               3598                 :                :      * expressions, which might take a non-negligible amount of time, though.
                               3599                 :                :      */
 1131 tmunro@postgresql.or     3600                 :          17567 :     pg_time_usec_t now = 0;
                               3601                 :                : 
                               3602                 :                :     /*
                               3603                 :                :      * Loop in the state machine, until we have to wait for a result from the
                               3604                 :                :      * server or have to sleep for throttling or \sleep.
                               3605                 :                :      *
                               3606                 :                :      * Note: In the switch-statement below, 'break' will loop back here,
                               3607                 :                :      * meaning "continue in the state machine".  Return is used to return to
                               3608                 :                :      * the caller, giving the thread the opportunity to advance another
                               3609                 :                :      * client.
                               3610                 :                :      */
                               3611                 :                :     for (;;)
 2757 heikki.linnakangas@i     3612                 :          59688 :     {
                               3613                 :                :         Command    *command;
                               3614                 :                : 
                               3615   [ +  +  +  +  :          77255 :         switch (st->state)
                                     +  +  +  +  +  
                                     +  +  +  -  +  
                                              +  - ]
                               3616                 :                :         {
                               3617                 :                :                 /* Select transaction (script) to run.  */
                               3618                 :           7483 :             case CSTATE_CHOOSE_SCRIPT:
                               3619                 :           7483 :                 st->use_file = chooseScript(thread);
 1971 alvherre@alvh.no-ip.     3620         [ -  + ]:           7483 :                 Assert(conditional_stack_empty(st->cstack));
                               3621                 :                : 
                               3622                 :                :                 /* reset transaction variables to default values */
  753 ishii@postgresql.org     3623                 :           7483 :                 st->estatus = ESTATUS_NO_ERROR;
                               3624                 :           7483 :                 st->tries = 1;
                               3625                 :                : 
 1558 peter@eisentraut.org     3626         [ +  + ]:           7483 :                 pg_log_debug("client %d executing script \"%s\"",
                               3627                 :                :                              st->id, sql_script[st->use_file].desc);
                               3628                 :                : 
                               3629                 :                :                 /*
                               3630                 :                :                  * If time is over, we're done; otherwise, get ready to start
                               3631                 :                :                  * a new transaction, or to get throttled if that's requested.
                               3632                 :                :                  */
 1971 alvherre@alvh.no-ip.     3633         [ +  - ]:          14966 :                 st->state = timer_exceeded ? CSTATE_FINISHED :
                               3634         [ +  + ]:           7483 :                     throttle_delay > 0 ? CSTATE_PREPARE_THROTTLE : CSTATE_START_TX;
                               3635                 :           7483 :                 break;
                               3636                 :                : 
                               3637                 :                :                 /* Start new transaction (script) */
                               3638                 :           7482 :             case CSTATE_START_TX:
 1131 tmunro@postgresql.or     3639                 :           7482 :                 pg_time_now_lazy(&now);
                               3640                 :                : 
                               3641                 :                :                 /* establish connection if needed, i.e. under --connect */
 1971 alvherre@alvh.no-ip.     3642         [ +  + ]:           7482 :                 if (st->con == NULL)
                               3643                 :                :                 {
 1131 tmunro@postgresql.or     3644                 :            110 :                     pg_time_usec_t start = now;
                               3645                 :                : 
 1971 alvherre@alvh.no-ip.     3646         [ -  + ]:            110 :                     if ((st->con = doConnect()) == NULL)
                               3647                 :                :                     {
                               3648                 :                :                         /*
                               3649                 :                :                          * as the bench is already running, we do not abort
                               3650                 :                :                          * the process
                               3651                 :                :                          */
 1558 peter@eisentraut.org     3652                 :UBC           0 :                         pg_log_error("client %d aborted while establishing connection", st->id);
 1971 alvherre@alvh.no-ip.     3653                 :              0 :                         st->state = CSTATE_ABORTED;
                               3654                 :              0 :                         break;
                               3655                 :                :                     }
                               3656                 :                : 
                               3657                 :                :                     /* reset now after connection */
 1131 tmunro@postgresql.or     3658                 :CBC         110 :                     now = pg_time_now();
                               3659                 :                : 
                               3660                 :            110 :                     thread->conn_duration += now - start;
                               3661                 :                : 
                               3662                 :                :                     /* Reset session-local state */
  418 alvherre@alvh.no-ip.     3663                 :            110 :                     pg_free(st->prepared);
                               3664                 :            110 :                     st->prepared = NULL;
                               3665                 :                :                 }
                               3666                 :                : 
                               3667                 :                :                 /*
                               3668                 :                :                  * It is the first try to run this transaction. Remember the
                               3669                 :                :                  * random state: maybe it will get an error and we will need
                               3670                 :                :                  * to run it again.
                               3671                 :                :                  */
  753 ishii@postgresql.org     3672                 :           7482 :                 st->random_state = st->cs_func_rs;
                               3673                 :                : 
                               3674                 :                :                 /* record transaction start time */
 1971 alvherre@alvh.no-ip.     3675                 :           7482 :                 st->txn_begin = now;
                               3676                 :                : 
                               3677                 :                :                 /*
                               3678                 :                :                  * When not throttling, this is also the transaction's
                               3679                 :                :                  * scheduled start time.
                               3680                 :                :                  */
                               3681         [ +  + ]:           7482 :                 if (!throttle_delay)
 1131 tmunro@postgresql.or     3682                 :           7281 :                     st->txn_scheduled = now;
                               3683                 :                : 
                               3684                 :                :                 /* Begin with the first command */
 1971 alvherre@alvh.no-ip.     3685                 :           7482 :                 st->state = CSTATE_START_COMMAND;
                               3686                 :           7482 :                 st->command = 0;
 2757 heikki.linnakangas@i     3687                 :           7482 :                 break;
                               3688                 :                : 
                               3689                 :                :                 /*
                               3690                 :                :                  * Handle throttling once per transaction by sleeping.
                               3691                 :                :                  */
 1971 alvherre@alvh.no-ip.     3692                 :            210 :             case CSTATE_PREPARE_THROTTLE:
                               3693                 :                : 
                               3694                 :                :                 /*
                               3695                 :                :                  * Generate a delay such that the series of delays will
                               3696                 :                :                  * approximate a Poisson distribution centered on the
                               3697                 :                :                  * throttle_delay time.
                               3698                 :                :                  *
                               3699                 :                :                  * If transactions are too slow or a given wait is shorter
                               3700                 :                :                  * than a transaction, the next transaction will start right
                               3701                 :                :                  * away.
                               3702                 :                :                  */
 2757 heikki.linnakangas@i     3703         [ -  + ]:            210 :                 Assert(throttle_delay > 0);
                               3704                 :                : 
 1971 alvherre@alvh.no-ip.     3705                 :            210 :                 thread->throttle_trigger +=
                               3706                 :            210 :                     getPoissonRand(&thread->ts_throttle_rs, throttle_delay);
 2757 heikki.linnakangas@i     3707                 :            210 :                 st->txn_scheduled = thread->throttle_trigger;
                               3708                 :                : 
                               3709                 :                :                 /*
                               3710                 :                :                  * If --latency-limit is used, and this slot is already late
                               3711                 :                :                  * so that the transaction will miss the latency limit even if
                               3712                 :                :                  * it completed immediately, skip this time slot and loop to
                               3713                 :                :                  * reschedule.
                               3714                 :                :                  */
                               3715         [ +  - ]:            210 :                 if (latency_limit)
                               3716                 :                :                 {
 1131 tmunro@postgresql.or     3717                 :            210 :                     pg_time_now_lazy(&now);
                               3718                 :                : 
  947 fujii@postgresql.org     3719         [ +  + ]:            210 :                     if (thread->throttle_trigger < now - latency_limit)
                               3720                 :                :                     {
 2757 heikki.linnakangas@i     3721                 :              9 :                         processXactStats(thread, st, &now, true, agg);
                               3722                 :                : 
                               3723                 :                :                         /*
                               3724                 :                :                          * Finish client if -T or -t was exceeded.
                               3725                 :                :                          *
                               3726                 :                :                          * Stop counting skipped transactions under -T as soon
                               3727                 :                :                          * as the timer is exceeded. Because otherwise it can
                               3728                 :                :                          * take a very long time to count all of them
                               3729                 :                :                          * especially when quite a lot of them happen with
                               3730                 :                :                          * unrealistically high rate setting in -R, which
                               3731                 :                :                          * would prevent pgbench from ending immediately.
                               3732                 :                :                          * Because of this behavior, note that there is no
                               3733                 :                :                          * guarantee that all skipped transactions are counted
                               3734                 :                :                          * under -T though there is under -t. This is OK in
                               3735                 :                :                          * practice because it's very unlikely to happen with
                               3736                 :                :                          * realistic setting.
                               3737                 :                :                          */
  947 fujii@postgresql.org     3738   [ +  -  +  -  :              9 :                         if (timer_exceeded || (nxacts > 0 && st->cnt >= nxacts))
                                              +  + ]
                               3739                 :              1 :                             st->state = CSTATE_FINISHED;
                               3740                 :                : 
                               3741                 :                :                         /* Go back to top of loop with CSTATE_PREPARE_THROTTLE */
 2414 tgl@sss.pgh.pa.us        3742                 :              9 :                         break;
                               3743                 :                :                     }
                               3744                 :                :                 }
                               3745                 :                : 
                               3746                 :                :                 /*
                               3747                 :                :                  * stop client if next transaction is beyond pgbench end of
                               3748                 :                :                  * execution; otherwise, throttle it.
                               3749                 :                :                  */
 1971 alvherre@alvh.no-ip.     3750         [ #  # ]:UBC           0 :                 st->state = end_time > 0 && st->txn_scheduled > end_time ?
 1971 alvherre@alvh.no-ip.     3751         [ -  + ]:CBC         201 :                     CSTATE_FINISHED : CSTATE_THROTTLE;
 2757 heikki.linnakangas@i     3752                 :            201 :                 break;
                               3753                 :                : 
                               3754                 :                :                 /*
                               3755                 :                :                  * Wait until it's time to start next transaction.
                               3756                 :                :                  */
 1971 alvherre@alvh.no-ip.     3757                 :            201 :             case CSTATE_THROTTLE:
 1131 tmunro@postgresql.or     3758                 :            201 :                 pg_time_now_lazy(&now);
                               3759                 :                : 
                               3760         [ -  + ]:            201 :                 if (now < st->txn_scheduled)
 1971 alvherre@alvh.no-ip.     3761                 :UBC           0 :                     return;     /* still sleeping, nothing to do here */
                               3762                 :                : 
                               3763                 :                :                 /* done sleeping, but don't start transaction if we're done */
 1971 alvherre@alvh.no-ip.     3764         [ -  + ]:CBC         201 :                 st->state = timer_exceeded ? CSTATE_FINISHED : CSTATE_START_TX;
 2757 heikki.linnakangas@i     3765                 :            201 :                 break;
                               3766                 :                : 
                               3767                 :                :                 /*
                               3768                 :                :                  * Send a command to server (or execute a meta-command)
                               3769                 :                :                  */
                               3770                 :          20342 :             case CSTATE_START_COMMAND:
 1845 alvherre@alvh.no-ip.     3771                 :          20342 :                 command = sql_script[st->use_file].commands[st->command];
                               3772                 :                : 
                               3773                 :                :                 /*
                               3774                 :                :                  * Transition to script end processing if done, but close up
                               3775                 :                :                  * shop if a pipeline is open at this point.
                               3776                 :                :                  */
                               3777         [ +  + ]:          20342 :                 if (command == NULL)
                               3778                 :                :                 {
   83                          3779         [ +  + ]:           7437 :                     if (PQpipelineStatus(st->con) == PQ_PIPELINE_OFF)
                               3780                 :           7434 :                         st->state = CSTATE_END_TX;
                               3781                 :                :                     else
                               3782                 :                :                     {
                               3783                 :              3 :                         pg_log_error("client %d aborted: end of script reached with pipeline open",
                               3784                 :                :                                      st->id);
                               3785                 :              3 :                         st->state = CSTATE_ABORTED;
                               3786                 :                :                     }
                               3787                 :                : 
 2757 heikki.linnakangas@i     3788                 :           7437 :                     break;
                               3789                 :                :                 }
                               3790                 :                : 
                               3791                 :                :                 /* record begin time of next command, and initiate it */
 1971 alvherre@alvh.no-ip.     3792         [ +  + ]:          12905 :                 if (report_per_command)
                               3793                 :                :                 {
 1131 tmunro@postgresql.or     3794                 :            401 :                     pg_time_now_lazy(&now);
 2757 heikki.linnakangas@i     3795                 :            401 :                     st->stmt_begin = now;
                               3796                 :                :                 }
                               3797                 :                : 
                               3798                 :                :                 /* Execute the command */
 1845 alvherre@alvh.no-ip.     3799         [ +  + ]:          12905 :                 if (command->type == SQL_COMMAND)
                               3800                 :                :                 {
                               3801                 :                :                     /* disallow \aset and \gset in pipeline mode */
 1126                          3802         [ +  + ]:          10615 :                     if (PQpipelineStatus(st->con) != PQ_PIPELINE_OFF)
                               3803                 :                :                     {
                               3804         [ +  + ]:            504 :                         if (command->meta == META_GSET)
                               3805                 :                :                         {
                               3806                 :              1 :                             commandFailed(st, "gset", "\\gset is not allowed in pipeline mode");
                               3807                 :              1 :                             st->state = CSTATE_ABORTED;
                               3808                 :              1 :                             break;
                               3809                 :                :                         }
                               3810         [ -  + ]:            503 :                         else if (command->meta == META_ASET)
                               3811                 :                :                         {
 1126 alvherre@alvh.no-ip.     3812                 :UBC           0 :                             commandFailed(st, "aset", "\\aset is not allowed in pipeline mode");
                               3813                 :              0 :                             st->state = CSTATE_ABORTED;
                               3814                 :              0 :                             break;
                               3815                 :                :                         }
                               3816                 :                :                     }
                               3817                 :                : 
 1845 alvherre@alvh.no-ip.     3818         [ -  + ]:CBC       10614 :                     if (!sendCommand(st, command))
                               3819                 :                :                     {
 1845 alvherre@alvh.no-ip.     3820                 :UBC           0 :                         commandFailed(st, "SQL", "SQL command send failed");
                               3821                 :              0 :                         st->state = CSTATE_ABORTED;
                               3822                 :                :                     }
                               3823                 :                :                     else
                               3824                 :                :                     {
                               3825                 :                :                         /* Wait for results, unless in pipeline mode */
 1126 alvherre@alvh.no-ip.     3826         [ +  + ]:CBC       10614 :                         if (PQpipelineStatus(st->con) == PQ_PIPELINE_OFF)
                               3827                 :          10111 :                             st->state = CSTATE_WAIT_RESULT;
                               3828                 :                :                         else
                               3829                 :            503 :                             st->state = CSTATE_END_COMMAND;
                               3830                 :                :                     }
                               3831                 :                :                 }
 1845                          3832         [ +  - ]:           2290 :                 else if (command->type == META_COMMAND)
                               3833                 :                :                 {
                               3834                 :                :                     /*-----
                               3835                 :                :                      * Possible state changes when executing meta commands:
                               3836                 :                :                      * - on errors CSTATE_ABORTED
                               3837                 :                :                      * - on sleep CSTATE_SLEEP
                               3838                 :                :                      * - else CSTATE_END_COMMAND
                               3839                 :                :                      */
 1838 tgl@sss.pgh.pa.us        3840                 :           2290 :                     st->state = executeMetaCommand(st, &now);
  753 ishii@postgresql.org     3841         [ +  + ]:           2290 :                     if (st->state == CSTATE_ABORTED)
                               3842                 :             31 :                         st->estatus = ESTATUS_META_COMMAND_ERROR;
                               3843                 :                :                 }
                               3844                 :                : 
                               3845                 :                :                 /*
                               3846                 :                :                  * We're now waiting for an SQL command to complete, or
                               3847                 :                :                  * finished processing a metacommand, or need to sleep, or
                               3848                 :                :                  * something bad happened.
                               3849                 :                :                  */
 1971 alvherre@alvh.no-ip.     3850   [ +  +  +  +  :          12904 :                 Assert(st->state == CSTATE_WAIT_RESULT ||
                                        +  +  -  + ]
                               3851                 :                :                        st->state == CSTATE_END_COMMAND ||
                               3852                 :                :                        st->state == CSTATE_SLEEP ||
                               3853                 :                :                        st->state == CSTATE_ABORTED);
 2215 teodor@sigaev.ru         3854                 :          12904 :                 break;
                               3855                 :                : 
                               3856                 :                :                 /*
                               3857                 :                :                  * non executed conditional branch
                               3858                 :                :                  */
                               3859                 :            384 :             case CSTATE_SKIP_COMMAND:
                               3860         [ -  + ]:            384 :                 Assert(!conditional_active(st->cstack));
                               3861                 :                :                 /* quickly skip commands until something to do... */
                               3862                 :                :                 while (true)
                               3863                 :                :                 {
                               3864                 :           1784 :                     command = sql_script[st->use_file].commands[st->command];
                               3865                 :                : 
                               3866                 :                :                     /* cannot reach end of script in that state */
                               3867         [ -  + ]:           1784 :                     Assert(command != NULL);
                               3868                 :                : 
                               3869                 :                :                     /*
                               3870                 :                :                      * if this is conditional related, update conditional
                               3871                 :                :                      * state
                               3872                 :                :                      */
                               3873         [ +  + ]:           1784 :                     if (command->type == META_COMMAND &&
                               3874         [ +  - ]:            397 :                         (command->meta == META_IF ||
                               3875         [ +  + ]:            397 :                          command->meta == META_ELIF ||
                               3876         [ +  + ]:            394 :                          command->meta == META_ELSE ||
                               3877         [ +  + ]:            392 :                          command->meta == META_ENDIF))
                               3878                 :                :                     {
                               3879                 :            770 :                         switch (conditional_stack_peek(st->cstack))
                               3880                 :                :                         {
 2180 tgl@sss.pgh.pa.us        3881                 :            381 :                             case IFSTATE_FALSE:
 1971 alvherre@alvh.no-ip.     3882         [ +  - ]:            381 :                                 if (command->meta == META_IF ||
                               3883         [ +  + ]:            381 :                                     command->meta == META_ELIF)
                               3884                 :                :                                 {
                               3885                 :                :                                     /* we must evaluate the condition */
 2180 tgl@sss.pgh.pa.us        3886                 :              3 :                                     st->state = CSTATE_START_COMMAND;
                               3887                 :                :                                 }
                               3888         [ +  + ]:            378 :                                 else if (command->meta == META_ELSE)
                               3889                 :                :                                 {
                               3890                 :                :                                     /* we must execute next command */
 1971 alvherre@alvh.no-ip.     3891                 :              1 :                                     conditional_stack_poke(st->cstack,
                               3892                 :                :                                                            IFSTATE_ELSE_TRUE);
 2215 teodor@sigaev.ru         3893                 :              1 :                                     st->state = CSTATE_START_COMMAND;
 2180 tgl@sss.pgh.pa.us        3894                 :              1 :                                     st->command++;
                               3895                 :                :                                 }
                               3896         [ +  - ]:            377 :                                 else if (command->meta == META_ENDIF)
                               3897                 :                :                                 {
                               3898         [ -  + ]:            377 :                                     Assert(!conditional_stack_empty(st->cstack));
                               3899                 :            377 :                                     conditional_stack_pop(st->cstack);
                               3900         [ +  - ]:            377 :                                     if (conditional_active(st->cstack))
                               3901                 :            377 :                                         st->state = CSTATE_START_COMMAND;
                               3902                 :                : 
                               3903                 :                :                                     /*
                               3904                 :                :                                      * else state remains in
                               3905                 :                :                                      * CSTATE_SKIP_COMMAND
                               3906                 :                :                                      */
                               3907                 :            377 :                                     st->command++;
                               3908                 :                :                                 }
                               3909                 :            381 :                                 break;
                               3910                 :                : 
                               3911                 :              4 :                             case IFSTATE_IGNORED:
                               3912                 :                :                             case IFSTATE_ELSE_FALSE:
                               3913         [ -  + ]:              4 :                                 if (command->meta == META_IF)
 1845 alvherre@alvh.no-ip.     3914                 :UBC           0 :                                     conditional_stack_push(st->cstack,
                               3915                 :                :                                                            IFSTATE_IGNORED);
 2180 tgl@sss.pgh.pa.us        3916         [ +  + ]:CBC           4 :                                 else if (command->meta == META_ENDIF)
                               3917                 :                :                                 {
                               3918         [ -  + ]:              3 :                                     Assert(!conditional_stack_empty(st->cstack));
                               3919                 :              3 :                                     conditional_stack_pop(st->cstack);
                               3920         [ +  - ]:              3 :                                     if (conditional_active(st->cstack))
                               3921                 :              3 :                                         st->state = CSTATE_START_COMMAND;
                               3922                 :                :                                 }
                               3923                 :                :                                 /* could detect "else" & "elif" after "else" */
 2215 teodor@sigaev.ru         3924                 :              4 :                                 st->command++;
 2180 tgl@sss.pgh.pa.us        3925                 :              4 :                                 break;
                               3926                 :                : 
 2180 tgl@sss.pgh.pa.us        3927                 :UBC           0 :                             case IFSTATE_NONE:
                               3928                 :                :                             case IFSTATE_TRUE:
                               3929                 :                :                             case IFSTATE_ELSE_TRUE:
                               3930                 :                :                             default:
                               3931                 :                : 
                               3932                 :                :                                 /*
                               3933                 :                :                                  * inconsistent if inactive, unreachable dead
                               3934                 :                :                                  * code
                               3935                 :                :                                  */
                               3936                 :              0 :                                 Assert(false);
                               3937                 :                :                         }
                               3938                 :                :                     }
                               3939                 :                :                     else
                               3940                 :                :                     {
                               3941                 :                :                         /* skip and consider next */
 2215 teodor@sigaev.ru         3942                 :CBC        1399 :                         st->command++;
                               3943                 :                :                     }
                               3944                 :                : 
                               3945         [ +  + ]:           1784 :                     if (st->state != CSTATE_SKIP_COMMAND)
                               3946                 :                :                         /* out of quick skip command loop */
                               3947                 :            384 :                         break;
                               3948                 :                :                 }
 2757 heikki.linnakangas@i     3949                 :            384 :                 break;
                               3950                 :                : 
                               3951                 :                :                 /*
                               3952                 :                :                  * Wait for the current SQL command to complete
                               3953                 :                :                  */
                               3954                 :          20739 :             case CSTATE_WAIT_RESULT:
 1558 peter@eisentraut.org     3955         [ +  + ]:          20739 :                 pg_log_debug("client %d receiving", st->id);
                               3956                 :                : 
                               3957                 :                :                 /*
                               3958                 :                :                  * Only check for new network data if we processed all data
                               3959                 :                :                  * fetched prior. Otherwise we end up doing a syscall for each
                               3960                 :                :                  * individual pipelined query, which has a measurable
                               3961                 :                :                  * performance impact.
                               3962                 :                :                  */
  984 andres@anarazel.de       3963   [ +  +  -  + ]:          20739 :                 if (PQisBusy(st->con) && !PQconsumeInput(st->con))
                               3964                 :                :                 {
                               3965                 :                :                     /* there's something wrong */
 2215 teodor@sigaev.ru         3966                 :UBC           0 :                     commandFailed(st, "SQL", "perhaps the backend died while processing");
 2757 heikki.linnakangas@i     3967                 :              0 :                     st->state = CSTATE_ABORTED;
                               3968                 :              0 :                     break;
                               3969                 :                :                 }
 2757 heikki.linnakangas@i     3970         [ +  + ]:CBC       20739 :                 if (PQisBusy(st->con))
                               3971                 :          10082 :                     return;     /* don't have the whole result yet */
                               3972                 :                : 
                               3973                 :                :                 /* store or discard the query results */
 1472 michael@paquier.xyz      3974         [ +  + ]:          10657 :                 if (readCommandResponse(st,
                               3975                 :          10657 :                                         sql_script[st->use_file].commands[st->command]->meta,
                               3976                 :          10657 :                                         sql_script[st->use_file].commands[st->command]->varprefix))
                               3977                 :                :                 {
                               3978                 :                :                     /*
                               3979                 :                :                      * outside of pipeline mode: stop reading results.
                               3980                 :                :                      * pipeline mode: continue reading results until an
                               3981                 :                :                      * end-of-pipeline response.
                               3982                 :                :                      */
 1126 alvherre@alvh.no-ip.     3983         [ +  + ]:          10643 :                     if (PQpipelineStatus(st->con) != PQ_PIPELINE_ON)
                               3984                 :          10140 :                         st->state = CSTATE_END_COMMAND;
                               3985                 :                :                 }
  753 ishii@postgresql.org     3986         [ +  + ]:             14 :                 else if (canRetryError(st->estatus))
                               3987                 :              2 :                     st->state = CSTATE_ERROR;
                               3988                 :                :                 else
 1921 alvherre@alvh.no-ip.     3989                 :             12 :                     st->state = CSTATE_ABORTED;
 2757 heikki.linnakangas@i     3990                 :          10657 :                 break;
                               3991                 :                : 
                               3992                 :                :                 /*
                               3993                 :                :                  * Wait until sleep is done. This state is entered after a
                               3994                 :                :                  * \sleep metacommand. The behavior is similar to
                               3995                 :                :                  * CSTATE_THROTTLE, but proceeds to CSTATE_START_COMMAND
                               3996                 :                :                  * instead of CSTATE_START_TX.
                               3997                 :                :                  */
                               3998                 :              8 :             case CSTATE_SLEEP:
 1131 tmunro@postgresql.or     3999                 :              8 :                 pg_time_now_lazy(&now);
                               4000         [ +  + ]:              8 :                 if (now < st->sleep_until)
 1971 alvherre@alvh.no-ip.     4001                 :              3 :                     return;     /* still sleeping, nothing to do here */
                               4002                 :                :                 /* Else done sleeping. */
 2757 heikki.linnakangas@i     4003                 :              5 :                 st->state = CSTATE_END_COMMAND;
                               4004                 :              5 :                 break;
                               4005                 :                : 
                               4006                 :                :                 /*
                               4007                 :                :                  * End of command: record stats and proceed to next command.
                               4008                 :                :                  */
                               4009                 :          12858 :             case CSTATE_END_COMMAND:
                               4010                 :                : 
                               4011                 :                :                 /*
                               4012                 :                :                  * command completed: accumulate per-command execution times
                               4013                 :                :                  * in thread-local data structure, if per-command latencies
                               4014                 :                :                  * are requested.
                               4015                 :                :                  */
 1971 alvherre@alvh.no-ip.     4016         [ +  + ]:          12858 :                 if (report_per_command)
                               4017                 :                :                 {
 1131 tmunro@postgresql.or     4018                 :            401 :                     pg_time_now_lazy(&now);
                               4019                 :                : 
 1921 alvherre@alvh.no-ip.     4020                 :            401 :                     command = sql_script[st->use_file].commands[st->command];
                               4021                 :                :                     /* XXX could use a mutex here, but we choose not to */
 2757 heikki.linnakangas@i     4022                 :            401 :                     addToSimpleStats(&command->stats,
 1131 tmunro@postgresql.or     4023                 :            401 :                                      PG_TIME_GET_DOUBLE(now - st->stmt_begin));
                               4024                 :                :                 }
                               4025                 :                : 
                               4026                 :                :                 /* Go ahead with next command, to be executed or skipped */
 2757 heikki.linnakangas@i     4027                 :          12858 :                 st->command++;
 2215 teodor@sigaev.ru         4028                 :          12858 :                 st->state = conditional_active(st->cstack) ?
                               4029         [ +  + ]:          12858 :                     CSTATE_START_COMMAND : CSTATE_SKIP_COMMAND;
 2757 heikki.linnakangas@i     4030                 :          12858 :                 break;
                               4031                 :                : 
                               4032                 :                :                 /*
                               4033                 :                :                  * Clean up after an error.
                               4034                 :                :                  */
  753 ishii@postgresql.org     4035                 :              2 :             case CSTATE_ERROR:
                               4036                 :                :                 {
                               4037                 :                :                     TStatus     tstatus;
                               4038                 :                : 
                               4039         [ -  + ]:              2 :                     Assert(st->estatus != ESTATUS_NO_ERROR);
                               4040                 :                : 
                               4041                 :                :                     /* Clear the conditional stack */
                               4042                 :              2 :                     conditional_stack_reset(st->cstack);
                               4043                 :                : 
                               4044                 :                :                     /* Read and discard until a sync point in pipeline mode */
                               4045         [ -  + ]:              2 :                     if (PQpipelineStatus(st->con) != PQ_PIPELINE_OFF)
                               4046                 :                :                     {
  753 ishii@postgresql.org     4047         [ #  # ]:UBC           0 :                         if (!discardUntilSync(st))
                               4048                 :                :                         {
                               4049                 :              0 :                             st->state = CSTATE_ABORTED;
                               4050                 :              0 :                             break;
                               4051                 :                :                         }
                               4052                 :                :                     }
                               4053                 :                : 
                               4054                 :                :                     /*
                               4055                 :                :                      * Check if we have a (failed) transaction block or not,
                               4056                 :                :                      * and roll it back if any.
                               4057                 :                :                      */
  753 ishii@postgresql.org     4058                 :CBC           2 :                     tstatus = getTransactionStatus(st->con);
                               4059         [ +  + ]:              2 :                     if (tstatus == TSTATUS_IN_BLOCK)
                               4060                 :                :                     {
                               4061                 :                :                         /* Try to rollback a (failed) transaction block. */
                               4062         [ -  + ]:              1 :                         if (!PQsendQuery(st->con, "ROLLBACK"))
                               4063                 :                :                         {
  753 ishii@postgresql.org     4064                 :UBC           0 :                             pg_log_error("client %d aborted: failed to send sql command for rolling back the failed transaction",
                               4065                 :                :                                          st->id);
                               4066                 :              0 :                             st->state = CSTATE_ABORTED;
                               4067                 :                :                         }
                               4068                 :                :                         else
  753 ishii@postgresql.org     4069                 :CBC           1 :                             st->state = CSTATE_WAIT_ROLLBACK_RESULT;
                               4070                 :                :                     }
                               4071         [ +  - ]:              1 :                     else if (tstatus == TSTATUS_IDLE)
                               4072                 :                :                     {
                               4073                 :                :                         /*
                               4074                 :                :                          * If time is over, we're done; otherwise, check if we
                               4075                 :                :                          * can retry the error.
                               4076                 :                :                          */
                               4077   [ +  -  +  - ]:              2 :                         st->state = timer_exceeded ? CSTATE_FINISHED :
                               4078                 :              1 :                             doRetry(st, &now) ? CSTATE_RETRY : CSTATE_FAILURE;
                               4079                 :                :                     }
                               4080                 :                :                     else
                               4081                 :                :                     {
  753 ishii@postgresql.org     4082         [ #  # ]:UBC           0 :                         if (tstatus == TSTATUS_CONN_ERROR)
                               4083                 :              0 :                             pg_log_error("perhaps the backend died while processing");
                               4084                 :                : 
                               4085                 :              0 :                         pg_log_error("client %d aborted while receiving the transaction status", st->id);
                               4086                 :              0 :                         st->state = CSTATE_ABORTED;
                               4087                 :                :                     }
  753 ishii@postgresql.org     4088                 :CBC           2 :                     break;
                               4089                 :                :                 }
                               4090                 :                : 
                               4091                 :                :                 /*
                               4092                 :                :                  * Wait for the rollback command to complete
                               4093                 :                :                  */
                               4094                 :              1 :             case CSTATE_WAIT_ROLLBACK_RESULT:
                               4095                 :                :                 {
                               4096                 :                :                     PGresult   *res;
                               4097                 :                : 
                               4098         [ +  - ]:              1 :                     pg_log_debug("client %d receiving", st->id);
                               4099         [ -  + ]:              1 :                     if (!PQconsumeInput(st->con))
                               4100                 :                :                     {
  753 ishii@postgresql.org     4101                 :UBC           0 :                         pg_log_error("client %d aborted while rolling back the transaction after an error; perhaps the backend died while processing",
                               4102                 :                :                                      st->id);
                               4103                 :              0 :                         st->state = CSTATE_ABORTED;
                               4104                 :              0 :                         break;
                               4105                 :                :                     }
  753 ishii@postgresql.org     4106         [ -  + ]:CBC           1 :                     if (PQisBusy(st->con))
  703 tgl@sss.pgh.pa.us        4107                 :LBC         (1) :                         return; /* don't have the whole result yet */
                               4108                 :                : 
                               4109                 :                :                     /*
                               4110                 :                :                      * Read and discard the query result;
                               4111                 :                :                      */
  753 ishii@postgresql.org     4112                 :CBC           1 :                     res = PQgetResult(st->con);
                               4113                 :              1 :                     switch (PQresultStatus(res))
                               4114                 :                :                     {
                               4115                 :              1 :                         case PGRES_COMMAND_OK:
                               4116                 :                :                             /* OK */
                               4117                 :              1 :                             PQclear(res);
                               4118                 :                :                             /* null must be returned */
                               4119                 :              1 :                             res = PQgetResult(st->con);
                               4120         [ -  + ]:              1 :                             Assert(res == NULL);
                               4121                 :                : 
                               4122                 :                :                             /*
                               4123                 :                :                              * If time is over, we're done; otherwise, check
                               4124                 :                :                              * if we can retry the error.
                               4125                 :                :                              */
                               4126   [ +  -  +  - ]:              2 :                             st->state = timer_exceeded ? CSTATE_FINISHED :
                               4127                 :              1 :                                 doRetry(st, &now) ? CSTATE_RETRY : CSTATE_FAILURE;
                               4128                 :              1 :                             break;
  753 ishii@postgresql.org     4129                 :UBC           0 :                         default:
                               4130                 :              0 :                             pg_log_error("client %d aborted while rolling back the transaction after an error; %s",
                               4131                 :                :                                          st->id, PQerrorMessage(st->con));
                               4132                 :              0 :                             PQclear(res);
                               4133                 :              0 :                             st->state = CSTATE_ABORTED;
                               4134                 :              0 :                             break;
                               4135                 :                :                     }
 2757 heikki.linnakangas@i     4136                 :CBC           1 :                     break;
                               4137                 :                :                 }
                               4138                 :                : 
                               4139                 :                :                 /*
                               4140                 :                :                  * Retry the transaction after an error.
                               4141                 :                :                  */
  753 ishii@postgresql.org     4142                 :              2 :             case CSTATE_RETRY:
                               4143                 :              2 :                 command = sql_script[st->use_file].commands[st->command];
                               4144                 :                : 
                               4145                 :                :                 /*
                               4146                 :                :                  * Inform that the transaction will be retried after the
                               4147                 :                :                  * error.
                               4148                 :                :                  */
                               4149         [ +  - ]:              2 :                 if (verbose_errors)
                               4150                 :              2 :                     printVerboseErrorMessages(st, &now, true);
                               4151                 :                : 
                               4152                 :                :                 /* Count tries and retries */
                               4153                 :              2 :                 st->tries++;
                               4154                 :              2 :                 command->retries++;
                               4155                 :                : 
                               4156                 :                :                 /*
                               4157                 :                :                  * Reset the random state as they were at the beginning of the
                               4158                 :                :                  * transaction.
                               4159                 :                :                  */
                               4160                 :              2 :                 st->cs_func_rs = st->random_state;
                               4161                 :                : 
                               4162                 :                :                 /* Process the first transaction command. */
                               4163                 :              2 :                 st->command = 0;
                               4164                 :              2 :                 st->estatus = ESTATUS_NO_ERROR;
                               4165                 :              2 :                 st->state = CSTATE_START_COMMAND;
                               4166                 :              2 :                 break;
                               4167                 :                : 
                               4168                 :                :                 /*
                               4169                 :                :                  * Record a failed transaction.
                               4170                 :                :                  */
  753 ishii@postgresql.org     4171                 :UBC           0 :             case CSTATE_FAILURE:
                               4172                 :              0 :                 command = sql_script[st->use_file].commands[st->command];
                               4173                 :                : 
                               4174                 :                :                 /* Accumulate the failure. */
                               4175                 :              0 :                 command->failures++;
                               4176                 :                : 
                               4177                 :                :                 /*
                               4178                 :                :                  * Inform that the failed transaction will not be retried.
                               4179                 :                :                  */
                               4180         [ #  # ]:              0 :                 if (verbose_errors)
                               4181                 :              0 :                     printVerboseErrorMessages(st, &now, false);
                               4182                 :                : 
                               4183                 :                :                 /* End the failed transaction. */
                               4184                 :              0 :                 st->state = CSTATE_END_TX;
                               4185                 :              0 :                 break;
                               4186                 :                : 
                               4187                 :                :                 /*
                               4188                 :                :                  * End of transaction (end of script, really).
                               4189                 :                :                  */
  753 ishii@postgresql.org     4190                 :CBC        7434 :             case CSTATE_END_TX:
                               4191                 :                :                 {
                               4192                 :                :                     TStatus     tstatus;
                               4193                 :                : 
                               4194                 :                :                     /* transaction finished: calculate latency and do log */
                               4195                 :           7434 :                     processXactStats(thread, st, &now, false, agg);
                               4196                 :                : 
                               4197                 :                :                     /*
                               4198                 :                :                      * missing \endif... cannot happen if CheckConditional was
                               4199                 :                :                      * okay
                               4200                 :                :                      */
                               4201         [ -  + ]:           7434 :                     Assert(conditional_stack_empty(st->cstack));
                               4202                 :                : 
                               4203                 :                :                     /*
                               4204                 :                :                      * We must complete all the transaction blocks that were
                               4205                 :                :                      * started in this script.
                               4206                 :                :                      */
                               4207                 :           7434 :                     tstatus = getTransactionStatus(st->con);
                               4208         [ +  + ]:           7434 :                     if (tstatus == TSTATUS_IN_BLOCK)
                               4209                 :                :                     {
                               4210                 :              1 :                         pg_log_error("client %d aborted: end of script reached without completing the last transaction",
                               4211                 :                :                                      st->id);
                               4212                 :              1 :                         st->state = CSTATE_ABORTED;
                               4213                 :              1 :                         break;
                               4214                 :                :                     }
                               4215         [ -  + ]:           7433 :                     else if (tstatus != TSTATUS_IDLE)
                               4216                 :                :                     {
  753 ishii@postgresql.org     4217         [ #  # ]:UBC           0 :                         if (tstatus == TSTATUS_CONN_ERROR)
                               4218                 :              0 :                             pg_log_error("perhaps the backend died while processing");
                               4219                 :                : 
                               4220                 :              0 :                         pg_log_error("client %d aborted while receiving the transaction status", st->id);
                               4221                 :              0 :                         st->state = CSTATE_ABORTED;
                               4222                 :              0 :                         break;
                               4223                 :                :                     }
                               4224                 :                : 
  753 ishii@postgresql.org     4225         [ +  + ]:CBC        7433 :                     if (is_connect)
                               4226                 :                :                     {
                               4227                 :            110 :                         pg_time_usec_t start = now;
                               4228                 :                : 
                               4229                 :            110 :                         pg_time_now_lazy(&start);
                               4230                 :            110 :                         finishCon(st);
                               4231                 :            110 :                         now = pg_time_now();
                               4232                 :            110 :                         thread->conn_duration += now - start;
                               4233                 :                :                     }
                               4234                 :                : 
                               4235   [ +  +  -  +  :           7433 :                     if ((st->cnt >= nxacts && duration <= 0) || timer_exceeded)
                                              -  + ]
                               4236                 :                :                     {
                               4237                 :                :                         /* script completed */
                               4238                 :             60 :                         st->state = CSTATE_FINISHED;
                               4239                 :             60 :                         break;
                               4240                 :                :                     }
                               4241                 :                : 
                               4242                 :                :                     /* next transaction (script) */
                               4243                 :           7373 :                     st->state = CSTATE_CHOOSE_SCRIPT;
                               4244                 :                : 
                               4245                 :                :                     /*
                               4246                 :                :                      * Ensure that we always return on this point, so as to
                               4247                 :                :                      * avoid an infinite loop if the script only contains meta
                               4248                 :                :                      * commands.
                               4249                 :                :                      */
                               4250                 :           7373 :                     return;
                               4251                 :                :                 }
                               4252                 :                : 
                               4253                 :                :                 /*
                               4254                 :                :                  * Final states.  Close the connection if it's still open.
                               4255                 :                :                  */
 2757 heikki.linnakangas@i     4256                 :            109 :             case CSTATE_ABORTED:
                               4257                 :                :             case CSTATE_FINISHED:
                               4258                 :                : 
                               4259                 :                :                 /*
                               4260                 :                :                  * Don't measure the disconnection delays here even if in
                               4261                 :                :                  * CSTATE_FINISHED and -C/--connect option is specified.
                               4262                 :                :                  * Because in this case all the connections that this thread
                               4263                 :                :                  * established are closed at the end of transactions and the
                               4264                 :                :                  * disconnection delays should have already been measured at
                               4265                 :                :                  * that moment.
                               4266                 :                :                  *
                               4267                 :                :                  * In CSTATE_ABORTED state, the measurement is no longer
                               4268                 :                :                  * necessary because we cannot report complete results anyways
                               4269                 :                :                  * in this case.
                               4270                 :                :                  */
 2236 andres@anarazel.de       4271                 :            109 :                 finishCon(st);
 2757 heikki.linnakangas@i     4272                 :            109 :                 return;
                               4273                 :                :         }
                               4274                 :                :     }
                               4275                 :                : }
                               4276                 :                : 
                               4277                 :                : /*
                               4278                 :                :  * Subroutine for advanceConnectionState -- initiate or execute the current
                               4279                 :                :  * meta command, and return the next state to set.
                               4280                 :                :  *
                               4281                 :                :  * *now is updated to the current time, unless the command is expected to
                               4282                 :                :  * take no time to execute.
                               4283                 :                :  */
                               4284                 :                : static ConnectionStateEnum
 1131 tmunro@postgresql.or     4285                 :           2290 : executeMetaCommand(CState *st, pg_time_usec_t *now)
                               4286                 :                : {
 1971 alvherre@alvh.no-ip.     4287                 :           2290 :     Command    *command = sql_script[st->use_file].commands[st->command];
                               4288                 :                :     int         argc;
                               4289                 :                :     char      **argv;
                               4290                 :                : 
 1845                          4291   [ +  -  +  - ]:           2290 :     Assert(command != NULL && command->type == META_COMMAND);
                               4292                 :                : 
                               4293                 :           2290 :     argc = command->argc;
                               4294                 :           2290 :     argv = command->argv;
                               4295                 :                : 
 1558 peter@eisentraut.org     4296         [ +  + ]:           2290 :     if (unlikely(__pg_log_level <= PG_LOG_DEBUG))
                               4297                 :                :     {
                               4298                 :                :         PQExpBufferData buf;
                               4299                 :                : 
 1556 michael@paquier.xyz      4300                 :            703 :         initPQExpBuffer(&buf);
                               4301                 :                : 
                               4302                 :            703 :         printfPQExpBuffer(&buf, "client %d executing \\%s", st->id, argv[0]);
 1845 alvherre@alvh.no-ip.     4303         [ +  + ]:           1406 :         for (int i = 1; i < argc; i++)
 1556 michael@paquier.xyz      4304                 :            703 :             appendPQExpBuffer(&buf, " %s", argv[i]);
                               4305                 :                : 
                               4306         [ +  - ]:            703 :         pg_log_debug("%s", buf.data);
                               4307                 :                : 
                               4308                 :            703 :         termPQExpBuffer(&buf);
                               4309                 :                :     }
                               4310                 :                : 
 1845 alvherre@alvh.no-ip.     4311         [ +  + ]:           2290 :     if (command->meta == META_SLEEP)
                               4312                 :                :     {
                               4313                 :                :         int         usec;
                               4314                 :                : 
                               4315                 :                :         /*
                               4316                 :                :          * A \sleep doesn't execute anything, we just get the delay from the
                               4317                 :                :          * argument, and enter the CSTATE_SLEEP state.  (The per-command
                               4318                 :                :          * latency will be recorded in CSTATE_SLEEP state, not here, after the
                               4319                 :                :          * delay has elapsed.)
                               4320                 :                :          */
  753 ishii@postgresql.org     4321         [ +  + ]:              6 :         if (!evaluateSleep(&st->variables, argc, argv, &usec))
                               4322                 :                :         {
 1845 alvherre@alvh.no-ip.     4323                 :              1 :             commandFailed(st, "sleep", "execution of meta-command failed");
                               4324                 :              1 :             return CSTATE_ABORTED;
                               4325                 :                :         }
                               4326                 :                : 
 1131 tmunro@postgresql.or     4327                 :              5 :         pg_time_now_lazy(now);
                               4328                 :              5 :         st->sleep_until = (*now) + usec;
 1845 alvherre@alvh.no-ip.     4329                 :              5 :         return CSTATE_SLEEP;
                               4330                 :                :     }
                               4331         [ +  + ]:           2284 :     else if (command->meta == META_SET)
                               4332                 :                :     {
                               4333                 :           1712 :         PgBenchExpr *expr = command->expr;
                               4334                 :                :         PgBenchValue result;
                               4335                 :                : 
 1838 tgl@sss.pgh.pa.us        4336         [ +  + ]:           1712 :         if (!evaluateExpr(st, expr, &result))
                               4337                 :                :         {
 1845 alvherre@alvh.no-ip.     4338                 :             23 :             commandFailed(st, argv[0], "evaluation of meta-command failed");
                               4339                 :             24 :             return CSTATE_ABORTED;
                               4340                 :                :         }
                               4341                 :                : 
  753 ishii@postgresql.org     4342         [ +  + ]:           1689 :         if (!putVariableValue(&st->variables, argv[0], argv[1], &result))
                               4343                 :                :         {
 1845 alvherre@alvh.no-ip.     4344                 :              1 :             commandFailed(st, "set", "assignment of meta-command failed");
                               4345                 :              1 :             return CSTATE_ABORTED;
                               4346                 :                :         }
                               4347                 :                :     }
                               4348         [ +  + ]:            572 :     else if (command->meta == META_IF)
                               4349                 :                :     {
                               4350                 :                :         /* backslash commands with an expression to evaluate */
                               4351                 :            421 :         PgBenchExpr *expr = command->expr;
                               4352                 :                :         PgBenchValue result;
                               4353                 :                :         bool        cond;
                               4354                 :                : 
 1838 tgl@sss.pgh.pa.us        4355         [ -  + ]:            421 :         if (!evaluateExpr(st, expr, &result))
                               4356                 :                :         {
 1845 alvherre@alvh.no-ip.     4357                 :UBC           0 :             commandFailed(st, argv[0], "evaluation of meta-command failed");
                               4358                 :              0 :             return CSTATE_ABORTED;
                               4359                 :                :         }
                               4360                 :                : 
 1845 alvherre@alvh.no-ip.     4361                 :CBC         421 :         cond = valueTruth(&result);
                               4362         [ +  + ]:            421 :         conditional_stack_push(st->cstack, cond ? IFSTATE_TRUE : IFSTATE_FALSE);
                               4363                 :                :     }
                               4364         [ +  + ]:            151 :     else if (command->meta == META_ELIF)
                               4365                 :                :     {
                               4366                 :                :         /* backslash commands with an expression to evaluate */
                               4367                 :              5 :         PgBenchExpr *expr = command->expr;
                               4368                 :                :         PgBenchValue result;
                               4369                 :                :         bool        cond;
                               4370                 :                : 
                               4371         [ +  + ]:              5 :         if (conditional_stack_peek(st->cstack) == IFSTATE_TRUE)
                               4372                 :                :         {
                               4373                 :                :             /* elif after executed block, skip eval and wait for endif. */
                               4374                 :              2 :             conditional_stack_poke(st->cstack, IFSTATE_IGNORED);
                               4375                 :              2 :             return CSTATE_END_COMMAND;
                               4376                 :                :         }
                               4377                 :                : 
 1838 tgl@sss.pgh.pa.us        4378         [ -  + ]:              3 :         if (!evaluateExpr(st, expr, &result))
                               4379                 :                :         {
 1845 alvherre@alvh.no-ip.     4380                 :UBC           0 :             commandFailed(st, argv[0], "evaluation of meta-command failed");
                               4381                 :              0 :             return CSTATE_ABORTED;
                               4382                 :                :         }
                               4383                 :                : 
 1845 alvherre@alvh.no-ip.     4384                 :CBC           3 :         cond = valueTruth(&result);
                               4385         [ -  + ]:              3 :         Assert(conditional_stack_peek(st->cstack) == IFSTATE_FALSE);
                               4386         [ +  + ]:              3 :         conditional_stack_poke(st->cstack, cond ? IFSTATE_TRUE : IFSTATE_FALSE);
                               4387                 :                :     }
                               4388         [ +  + ]:            146 :     else if (command->meta == META_ELSE)
                               4389                 :                :     {
                               4390         [ +  - ]:              1 :         switch (conditional_stack_peek(st->cstack))
                               4391                 :                :         {
                               4392                 :              1 :             case IFSTATE_TRUE:
                               4393                 :              1 :                 conditional_stack_poke(st->cstack, IFSTATE_ELSE_FALSE);
                               4394                 :              1 :                 break;
 1845 alvherre@alvh.no-ip.     4395                 :UBC           0 :             case IFSTATE_FALSE: /* inconsistent if active */
                               4396                 :                :             case IFSTATE_IGNORED:   /* inconsistent if active */
                               4397                 :                :             case IFSTATE_NONE:  /* else without if */
                               4398                 :                :             case IFSTATE_ELSE_TRUE: /* else after else */
                               4399                 :                :             case IFSTATE_ELSE_FALSE:    /* else after else */
                               4400                 :                :             default:
                               4401                 :                :                 /* dead code if conditional check is ok */
                               4402                 :              0 :                 Assert(false);
                               4403                 :                :         }
                               4404                 :                :     }
 1845 alvherre@alvh.no-ip.     4405         [ +  + ]:CBC         145 :     else if (command->meta == META_ENDIF)
                               4406                 :                :     {
                               4407         [ -  + ]:             40 :         Assert(!conditional_stack_empty(st->cstack));
                               4408                 :             40 :         conditional_stack_pop(st->cstack);
                               4409                 :                :     }
                               4410         [ +  + ]:            105 :     else if (command->meta == META_SETSHELL)
                               4411                 :                :     {
  753 ishii@postgresql.org     4412         [ +  + ]:              3 :         if (!runShellCommand(&st->variables, argv[1], argv + 2, argc - 2))
                               4413                 :                :         {
 1845 alvherre@alvh.no-ip.     4414                 :              2 :             commandFailed(st, "setshell", "execution of meta-command failed");
                               4415                 :              2 :             return CSTATE_ABORTED;
                               4416                 :                :         }
                               4417                 :                :     }
                               4418         [ +  + ]:            102 :     else if (command->meta == META_SHELL)
                               4419                 :                :     {
  753 ishii@postgresql.org     4420         [ +  + ]:              3 :         if (!runShellCommand(&st->variables, NULL, argv + 1, argc - 1))
                               4421                 :                :         {
 1845 alvherre@alvh.no-ip.     4422                 :              2 :             commandFailed(st, "shell", "execution of meta-command failed");
                               4423                 :              2 :             return CSTATE_ABORTED;
                               4424                 :                :         }
                               4425                 :                :     }
 1126                          4426         [ +  + ]:             99 :     else if (command->meta == META_STARTPIPELINE)
                               4427                 :                :     {
                               4428                 :                :         /*
                               4429                 :                :          * In pipeline mode, we use a workflow based on libpq pipeline
                               4430                 :                :          * functions.
                               4431                 :                :          */
                               4432         [ -  + ]:             50 :         if (querymode == QUERY_SIMPLE)
                               4433                 :                :         {
 1126 alvherre@alvh.no-ip.     4434                 :UBC           0 :             commandFailed(st, "startpipeline", "cannot use pipeline mode with the simple query protocol");
                               4435                 :              0 :             return CSTATE_ABORTED;
                               4436                 :                :         }
                               4437                 :                : 
                               4438                 :                :         /*
                               4439                 :                :          * If we're in prepared-query mode, we need to prepare all the
                               4440                 :                :          * commands that are inside the pipeline before we actually start the
                               4441                 :                :          * pipeline itself.  This solves the problem that running BEGIN
                               4442                 :                :          * ISOLATION LEVEL SERIALIZABLE in a pipeline would fail due to a
                               4443                 :                :          * snapshot having been acquired by the prepare within the pipeline.
                               4444                 :                :          */
  418 alvherre@alvh.no-ip.     4445         [ +  + ]:CBC          50 :         if (querymode == QUERY_PREPARED)
                               4446                 :             42 :             prepareCommandsInPipeline(st);
                               4447                 :                : 
 1126                          4448         [ +  + ]:             50 :         if (PQpipelineStatus(st->con) != PQ_PIPELINE_OFF)
                               4449                 :                :         {
                               4450                 :              1 :             commandFailed(st, "startpipeline", "already in pipeline mode");
                               4451                 :              1 :             return CSTATE_ABORTED;
                               4452                 :                :         }
                               4453         [ -  + ]:             49 :         if (PQenterPipelineMode(st->con) == 0)
                               4454                 :                :         {
 1126 alvherre@alvh.no-ip.     4455                 :UBC           0 :             commandFailed(st, "startpipeline", "failed to enter pipeline mode");
                               4456                 :              0 :             return CSTATE_ABORTED;
                               4457                 :                :         }
                               4458                 :                :     }
   81 michael@paquier.xyz      4459         [ +  + ]:GNC          49 :     else if (command->meta == META_SYNCPIPELINE)
                               4460                 :                :     {
                               4461         [ -  + ]:              4 :         if (PQpipelineStatus(st->con) != PQ_PIPELINE_ON)
                               4462                 :                :         {
   81 michael@paquier.xyz      4463                 :UNC           0 :             commandFailed(st, "syncpipeline", "not in pipeline mode");
                               4464                 :              0 :             return CSTATE_ABORTED;
                               4465                 :                :         }
   81 michael@paquier.xyz      4466         [ -  + ]:GNC           4 :         if (PQsendPipelineSync(st->con) == 0)
                               4467                 :                :         {
   81 michael@paquier.xyz      4468                 :UNC           0 :             commandFailed(st, "syncpipeline", "failed to send a pipeline sync");
                               4469                 :              0 :             return CSTATE_ABORTED;
                               4470                 :                :         }
   81 michael@paquier.xyz      4471                 :GNC           4 :         st->num_syncs++;
                               4472                 :                :     }
 1126 alvherre@alvh.no-ip.     4473         [ +  - ]:CBC          45 :     else if (command->meta == META_ENDPIPELINE)
                               4474                 :                :     {
                               4475         [ +  + ]:             45 :         if (PQpipelineStatus(st->con) != PQ_PIPELINE_ON)
                               4476                 :                :         {
                               4477                 :              1 :             commandFailed(st, "endpipeline", "not in pipeline mode");
                               4478                 :              1 :             return CSTATE_ABORTED;
                               4479                 :                :         }
                               4480         [ -  + ]:             44 :         if (!PQpipelineSync(st->con))
                               4481                 :                :         {
 1126 alvherre@alvh.no-ip.     4482                 :UBC           0 :             commandFailed(st, "endpipeline", "failed to send a pipeline sync");
                               4483                 :              0 :             return CSTATE_ABORTED;
                               4484                 :                :         }
   81 michael@paquier.xyz      4485                 :GNC          44 :         st->num_syncs++;
                               4486                 :                :         /* Now wait for the PGRES_PIPELINE_SYNC and exit pipeline mode there */
                               4487                 :                :         /* collect pending results before getting out of pipeline mode */
 1126 alvherre@alvh.no-ip.     4488                 :CBC          44 :         return CSTATE_WAIT_RESULT;
                               4489                 :                :     }
                               4490                 :                : 
                               4491                 :                :     /*
                               4492                 :                :      * executing the expression or shell command might have taken a
                               4493                 :                :      * non-negligible amount of time, so reset 'now'
                               4494                 :                :      */
 1131 tmunro@postgresql.or     4495                 :           2208 :     *now = 0;
                               4496                 :                : 
 1845 alvherre@alvh.no-ip.     4497                 :           2208 :     return CSTATE_END_COMMAND;
                               4498                 :                : }
                               4499                 :                : 
                               4500                 :                : /*
                               4501                 :                :  * Return the number of failed transactions.
                               4502                 :                :  */
                               4503                 :                : static int64
  753 ishii@postgresql.org     4504                 :             82 : getFailures(const StatsData *stats)
                               4505                 :                : {
                               4506                 :            164 :     return (stats->serialization_failures +
                               4507                 :             82 :             stats->deadlock_failures);
                               4508                 :                : }
                               4509                 :                : 
                               4510                 :                : /*
                               4511                 :                :  * Return a string constant representing the result of a transaction
                               4512                 :                :  * that is not successfully processed.
                               4513                 :                :  */
                               4514                 :                : static const char *
  753 ishii@postgresql.org     4515                 :UBC           0 : getResultString(bool skipped, EStatus estatus)
                               4516                 :                : {
                               4517         [ #  # ]:              0 :     if (skipped)
                               4518                 :              0 :         return "skipped";
                               4519         [ #  # ]:              0 :     else if (failures_detailed)
                               4520                 :                :     {
                               4521      [ #  #  # ]:              0 :         switch (estatus)
                               4522                 :                :         {
                               4523                 :              0 :             case ESTATUS_SERIALIZATION_ERROR:
                               4524                 :              0 :                 return "serialization";
                               4525                 :              0 :             case ESTATUS_DEADLOCK_ERROR:
                               4526                 :              0 :                 return "deadlock";
                               4527                 :              0 :             default:
                               4528                 :                :                 /* internal error which should never occur */
  737 tgl@sss.pgh.pa.us        4529                 :              0 :                 pg_fatal("unexpected error status: %d", estatus);
                               4530                 :                :         }
                               4531                 :                :     }
                               4532                 :                :     else
  753 ishii@postgresql.org     4533                 :              0 :         return "failed";
                               4534                 :                : }
                               4535                 :                : 
                               4536                 :                : /*
                               4537                 :                :  * Print log entry after completing one transaction.
                               4538                 :                :  *
                               4539                 :                :  * We print Unix-epoch timestamps in the log, so that entries can be
                               4540                 :                :  * correlated against other logs.
                               4541                 :                :  *
                               4542                 :                :  * XXX We could obtain the time from the caller and just shift it here, to
                               4543                 :                :  * avoid the cost of an extra call to pg_time_now().
                               4544                 :                :  */
                               4545                 :                : static void
 2659 tgl@sss.pgh.pa.us        4546                 :CBC         110 : doLog(TState *thread, CState *st,
                               4547                 :                :       StatsData *agg, bool skipped, double latency, double lag)
                               4548                 :                : {
 2866 rhaas@postgresql.org     4549                 :            110 :     FILE       *logfile = thread->logfile;
 1008 tmunro@postgresql.or     4550                 :            110 :     pg_time_usec_t now = pg_time_now() + epoch_shift;
                               4551                 :                : 
 2984 alvherre@alvh.no-ip.     4552         [ -  + ]:            110 :     Assert(use_log);
                               4553                 :                : 
                               4554                 :                :     /*
                               4555                 :                :      * Skip the log entry if sampling is enabled and this row doesn't belong
                               4556                 :                :      * to the random sample.
                               4557                 :                :      */
 3482 heikki.linnakangas@i     4558         [ +  + ]:            110 :     if (sample_rate != 0.0 &&
  868 tgl@sss.pgh.pa.us        4559         [ +  + ]:            100 :         pg_prng_double(&thread->ts_sample_rs) > sample_rate)
 3482 heikki.linnakangas@i     4560                 :             45 :         return;
                               4561                 :                : 
                               4562                 :                :     /* should we aggregate the results or not? */
                               4563         [ -  + ]:             65 :     if (agg_interval > 0)
                               4564                 :                :     {
                               4565                 :                :         pg_time_usec_t next;
                               4566                 :                : 
                               4567                 :                :         /*
                               4568                 :                :          * Loop until we reach the interval of the current moment, and print
                               4569                 :                :          * any empty intervals in between (this may happen with very low tps,
                               4570                 :                :          * e.g. --rate=0.1).
                               4571                 :                :          */
                               4572                 :                : 
 1008 tmunro@postgresql.or     4573         [ #  # ]:UBC           0 :         while ((next = agg->start_time + agg_interval * INT64CONST(1000000)) <= now)
                               4574                 :                :         {
  739 ishii@postgresql.org     4575                 :              0 :             double      lag_sum = 0.0;
                               4576                 :              0 :             double      lag_sum2 = 0.0;
                               4577                 :              0 :             double      lag_min = 0.0;
                               4578                 :              0 :             double      lag_max = 0.0;
                               4579                 :              0 :             int64       skipped = 0;
                               4580                 :              0 :             int64       serialization_failures = 0;
                               4581                 :              0 :             int64       deadlock_failures = 0;
                               4582                 :              0 :             int64       retried = 0;
                               4583                 :              0 :             int64       retries = 0;
                               4584                 :                : 
                               4585                 :                :             /* print aggregated report to logfile */
 1131 tmunro@postgresql.or     4586                 :              0 :             fprintf(logfile, INT64_FORMAT " " INT64_FORMAT " %.0f %.0f %.0f %.0f",
 1008                          4587                 :              0 :                     agg->start_time / 1000000,   /* seconds since Unix epoch */
                               4588                 :                :                     agg->cnt,
                               4589                 :                :                     agg->latency.sum,
                               4590                 :                :                     agg->latency.sum2,
                               4591                 :                :                     agg->latency.min,
                               4592                 :                :                     agg->latency.max);
                               4593                 :                : 
 2998 alvherre@alvh.no-ip.     4594         [ #  # ]:              0 :             if (throttle_delay)
                               4595                 :                :             {
  739 ishii@postgresql.org     4596                 :              0 :                 lag_sum = agg->lag.sum;
                               4597                 :              0 :                 lag_sum2 = agg->lag.sum2;
                               4598                 :              0 :                 lag_min = agg->lag.min;
                               4599                 :              0 :                 lag_max = agg->lag.max;
                               4600                 :                :             }
                               4601                 :              0 :             fprintf(logfile, " %.0f %.0f %.0f %.0f",
                               4602                 :                :                     lag_sum,
                               4603                 :                :                     lag_sum2,
                               4604                 :                :                     lag_min,
                               4605                 :                :                     lag_max);
                               4606                 :                : 
                               4607         [ #  # ]:              0 :             if (latency_limit)
                               4608                 :              0 :                 skipped = agg->skipped;
                               4609                 :              0 :             fprintf(logfile, " " INT64_FORMAT, skipped);
                               4610                 :                : 
  753                          4611         [ #  # ]:              0 :             if (max_tries != 1)
                               4612                 :                :             {
  739                          4613                 :              0 :                 retried = agg->retried;
                               4614                 :              0 :                 retries = agg->retries;
                               4615                 :                :             }
                               4616                 :              0 :             fprintf(logfile, " " INT64_FORMAT " " INT64_FORMAT, retried, retries);
                               4617                 :                : 
                               4618         [ #  # ]:              0 :             if (failures_detailed)
                               4619                 :                :             {
                               4620                 :              0 :                 serialization_failures = agg->serialization_failures;
                               4621                 :              0 :                 deadlock_failures = agg->deadlock_failures;
                               4622                 :                :             }
  726                          4623                 :              0 :             fprintf(logfile, " " INT64_FORMAT " " INT64_FORMAT,
                               4624                 :                :                     serialization_failures,
                               4625                 :                :                     deadlock_failures);
                               4626                 :                : 
 2998 alvherre@alvh.no-ip.     4627                 :              0 :             fputc('\n', logfile);
                               4628                 :                : 
                               4629                 :                :             /* reset data and move to next interval */
 1008 tmunro@postgresql.or     4630                 :              0 :             initStats(agg, next);
                               4631                 :                :         }
                               4632                 :                : 
                               4633                 :                :         /* accumulate the current transaction */
  753 ishii@postgresql.org     4634                 :              0 :         accumStats(agg, skipped, latency, lag, st->estatus, st->tries);
                               4635                 :                :     }
                               4636                 :                :     else
                               4637                 :                :     {
                               4638                 :                :         /* no, print raw transactions */
  753 ishii@postgresql.org     4639   [ +  -  +  - ]:CBC          65 :         if (!skipped && st->estatus == ESTATUS_NO_ERROR)
 1131 tmunro@postgresql.or     4640                 :             65 :             fprintf(logfile, "%d " INT64_FORMAT " %.0f %d " INT64_FORMAT " "
                               4641                 :                :                     INT64_FORMAT,
                               4642                 :                :                     st->id, st->cnt, latency, st->use_file,
                               4643                 :                :                     now / 1000000, now % 1000000);
                               4644                 :                :         else
  753 ishii@postgresql.org     4645                 :UBC           0 :             fprintf(logfile, "%d " INT64_FORMAT " %s %d " INT64_FORMAT " "
                               4646                 :                :                     INT64_FORMAT,
                               4647                 :                :                     st->id, st->cnt, getResultString(skipped, st->estatus),
                               4648                 :                :                     st->use_file, now / 1000000, now % 1000000);
                               4649                 :                : 
 3482 heikki.linnakangas@i     4650         [ -  + ]:CBC          65 :         if (throttle_delay)
 3482 heikki.linnakangas@i     4651                 :UBC           0 :             fprintf(logfile, " %.0f", lag);
  753 ishii@postgresql.org     4652         [ -  + ]:CBC          65 :         if (max_tries != 1)
  725 peter@eisentraut.org     4653                 :UBC           0 :             fprintf(logfile, " %u", st->tries - 1);
 3482 heikki.linnakangas@i     4654                 :CBC          65 :         fputc('\n', logfile);
                               4655                 :                :     }
                               4656                 :                : }
                               4657                 :                : 
                               4658                 :                : /*
                               4659                 :                :  * Accumulate and report statistics at end of a transaction.
                               4660                 :                :  *
                               4661                 :                :  * (This is also called when a transaction is late and thus skipped.
                               4662                 :                :  * Note that even skipped and failed transactions are counted in the CState
                               4663                 :                :  * "cnt" field.)
                               4664                 :                :  */
                               4665                 :                : static void
 1131 tmunro@postgresql.or     4666                 :           7443 : processXactStats(TState *thread, CState *st, pg_time_usec_t *now,
                               4667                 :                :                  bool skipped, StatsData *agg)
                               4668                 :                : {
 2998 alvherre@alvh.no-ip.     4669                 :           7443 :     double      latency = 0.0,
                               4670                 :           7443 :                 lag = 0.0;
  753 ishii@postgresql.org     4671   [ +  +  +  -  :           7443 :     bool        detailed = progress || throttle_delay || latency_limit ||
                                              +  + ]
  331 tgl@sss.pgh.pa.us        4672   [ +  -  +  + ]:          14886 :         use_log || per_script_stats;
                               4673                 :                : 
  753 ishii@postgresql.org     4674   [ +  +  +  +  :           7443 :     if (detailed && !skipped && st->estatus == ESTATUS_NO_ERROR)
                                              +  - ]
                               4675                 :                :     {
 1131 tmunro@postgresql.or     4676                 :           1411 :         pg_time_now_lazy(now);
                               4677                 :                : 
                               4678                 :                :         /* compute latency & lag */
                               4679                 :           1411 :         latency = (*now) - st->txn_scheduled;
                               4680                 :           1411 :         lag = st->txn_begin - st->txn_scheduled;
                               4681                 :                :     }
                               4682                 :                : 
                               4683                 :                :     /* keep detailed thread stats */
  753 ishii@postgresql.org     4684                 :           7443 :     accumStats(&thread->stats, skipped, latency, lag, st->estatus, st->tries);
                               4685                 :                : 
                               4686                 :                :     /* count transactions over the latency limit, if needed */
                               4687   [ +  +  +  + ]:           7443 :     if (latency_limit && latency > latency_limit)
                               4688                 :              1 :         thread->latency_late++;
                               4689                 :                : 
                               4690                 :                :     /* client stat is just counting */
 2414 tgl@sss.pgh.pa.us        4691                 :           7443 :     st->cnt++;
                               4692                 :                : 
 2998 alvherre@alvh.no-ip.     4693         [ +  + ]:           7443 :     if (use_log)
 2659 tgl@sss.pgh.pa.us        4694                 :            110 :         doLog(thread, st, agg, skipped, latency, lag);
                               4695                 :                : 
                               4696                 :                :     /* XXX could use a mutex here, but we choose not to */
 2995 alvherre@alvh.no-ip.     4697         [ +  + ]:           7443 :     if (per_script_stats)
  753 ishii@postgresql.org     4698                 :           1100 :         accumStats(&sql_script[st->use_file].stats, skipped, latency, lag,
                               4699                 :           1100 :                    st->estatus, st->tries);
 2998 alvherre@alvh.no-ip.     4700                 :           7443 : }
                               4701                 :                : 
                               4702                 :                : 
                               4703                 :                : /* discard connections */
                               4704                 :                : static void
 5368 ishii@postgresql.org     4705                 :            146 : disconnect_all(CState *state, int length)
                               4706                 :                : {
                               4707                 :                :     int         i;
                               4708                 :                : 
                               4709         [ +  + ]:            362 :     for (i = 0; i < length; i++)
 2236 andres@anarazel.de       4710                 :            216 :         finishCon(&state[i]);
 8856 ishii@postgresql.org     4711                 :            146 : }
                               4712                 :                : 
                               4713                 :                : /*
                               4714                 :                :  * Remove old pgbench tables, if any exist
                               4715                 :                :  */
                               4716                 :                : static void
 2344 tgl@sss.pgh.pa.us        4717                 :              3 : initDropTables(PGconn *con)
                               4718                 :                : {
                               4719                 :              3 :     fprintf(stderr, "dropping old tables...\n");
                               4720                 :                : 
                               4721                 :                :     /*
                               4722                 :                :      * We drop all the tables in one command, so that whether there are
                               4723                 :                :      * foreign key dependencies or not doesn't matter.
                               4724                 :                :      */
                               4725                 :              3 :     executeStatement(con, "drop table if exists "
                               4726                 :                :                      "pgbench_accounts, "
                               4727                 :                :                      "pgbench_branches, "
                               4728                 :                :                      "pgbench_history, "
                               4729                 :                :                      "pgbench_tellers");
                               4730                 :              3 : }
                               4731                 :                : 
                               4732                 :                : /*
                               4733                 :                :  * Create "pgbench_accounts" partitions if needed.
                               4734                 :                :  *
                               4735                 :                :  * This is the larger table of pgbench default tpc-b like schema
                               4736                 :                :  * with a known size, so we choose to partition it.
                               4737                 :                :  */
                               4738                 :                : static void
 1657 akapila@postgresql.o     4739                 :              2 : createPartitions(PGconn *con)
                               4740                 :                : {
                               4741                 :                :     PQExpBufferData query;
                               4742                 :                : 
                               4743                 :                :     /* we must have to create some partitions */
                               4744         [ -  + ]:              2 :     Assert(partitions > 0);
                               4745                 :                : 
                               4746                 :              2 :     fprintf(stderr, "creating %d partitions...\n", partitions);
                               4747                 :                : 
 1292 heikki.linnakangas@i     4748                 :              2 :     initPQExpBuffer(&query);
                               4749                 :                : 
 1657 akapila@postgresql.o     4750         [ +  + ]:              7 :     for (int p = 1; p <= partitions; p++)
                               4751                 :                :     {
                               4752         [ +  + ]:              5 :         if (partition_method == PART_RANGE)
                               4753                 :                :         {
                               4754                 :              3 :             int64       part_size = (naccounts * (int64) scale + partitions - 1) / partitions;
                               4755                 :                : 
 1292 heikki.linnakangas@i     4756                 :UBC           0 :             printfPQExpBuffer(&query,
                               4757                 :                :                               "create%s table pgbench_accounts_%d\n"
                               4758                 :                :                               "  partition of pgbench_accounts\n"
                               4759                 :                :                               "  for values from (",
 1292 heikki.linnakangas@i     4760         [ +  - ]:CBC           3 :                               unlogged_tables ? " unlogged" : "", p);
                               4761                 :                : 
                               4762                 :                :             /*
                               4763                 :                :              * For RANGE, we use open-ended partitions at the beginning and
                               4764                 :                :              * end to allow any valid value for the primary key.  Although the
                               4765                 :                :              * actual minimum and maximum values can be derived from the
                               4766                 :                :              * scale, it is more generic and the performance is better.
                               4767                 :                :              */
 1657 akapila@postgresql.o     4768         [ +  + ]:              3 :             if (p == 1)
 1292 heikki.linnakangas@i     4769                 :              1 :                 appendPQExpBufferStr(&query, "minvalue");
                               4770                 :                :             else
                               4771                 :              2 :                 appendPQExpBuffer(&query, INT64_FORMAT, (p - 1) * part_size + 1);
                               4772                 :                : 
                               4773                 :              3 :             appendPQExpBufferStr(&query, ") to (");
                               4774                 :                : 
 1657 akapila@postgresql.o     4775         [ +  + ]:              3 :             if (p < partitions)
 1292 heikki.linnakangas@i     4776                 :              2 :                 appendPQExpBuffer(&query, INT64_FORMAT, p * part_size + 1);
                               4777                 :                :             else
                               4778                 :              1 :                 appendPQExpBufferStr(&query, "maxvalue");
                               4779                 :                : 
                               4780                 :              3 :             appendPQExpBufferChar(&query, ')');
                               4781                 :                :         }
 1657 akapila@postgresql.o     4782         [ +  - ]:              2 :         else if (partition_method == PART_HASH)
 1292 heikki.linnakangas@i     4783                 :UBC           0 :             printfPQExpBuffer(&query,
                               4784                 :                :                               "create%s table pgbench_accounts_%d\n"
                               4785                 :                :                               "  partition of pgbench_accounts\n"
                               4786                 :                :                               "  for values with (modulus %d, remainder %d)",
 1292 heikki.linnakangas@i     4787         [ +  - ]:CBC           2 :                               unlogged_tables ? " unlogged" : "", p,
                               4788                 :                :                               partitions, p - 1);
                               4789                 :                :         else                    /* cannot get there */
 1657 akapila@postgresql.o     4790                 :UBC           0 :             Assert(0);
                               4791                 :                : 
                               4792                 :                :         /*
                               4793                 :                :          * Per ddlinfo in initCreateTables, fillfactor is needed on table
                               4794                 :                :          * pgbench_accounts.
                               4795                 :                :          */
 1292 heikki.linnakangas@i     4796                 :CBC           5 :         appendPQExpBuffer(&query, " with (fillfactor=%d)", fillfactor);
                               4797                 :                : 
                               4798                 :              5 :         executeStatement(con, query.data);
                               4799                 :                :     }
                               4800                 :                : 
                               4801                 :              2 :     termPQExpBuffer(&query);
 1657 akapila@postgresql.o     4802                 :              2 : }
                               4803                 :                : 
                               4804                 :                : /*
                               4805                 :                :  * Create pgbench's standard tables
                               4806                 :                :  */
                               4807                 :                : static void
 2344 tgl@sss.pgh.pa.us        4808                 :              3 : initCreateTables(PGconn *con)
                               4809                 :                : {
                               4810                 :                :     /*
                               4811                 :                :      * Note: TPC-B requires at least 100 bytes per row, and the "filler"
                               4812                 :                :      * fields in these table declarations were intended to comply with that.
                               4813                 :                :      * The pgbench_accounts table complies with that because the "filler"
                               4814                 :                :      * column is set to blank-padded empty string. But for all other tables
                               4815                 :                :      * the columns default to NULL and so don't actually take any space.  We
                               4816                 :                :      * could fix that by giving them non-null default values.  However, that
                               4817                 :                :      * would completely break comparability of pgbench results with prior
                               4818                 :                :      * versions. Since pgbench has never pretended to be fully TPC-B compliant
                               4819                 :                :      * anyway, we stick with the historical behavior.
                               4820                 :                :      */
                               4821                 :                :     struct ddlinfo
                               4822                 :                :     {
                               4823                 :                :         const char *table;      /* table name */
                               4824                 :                :         const char *smcols;     /* column decls if accountIDs are 32 bits */
                               4825                 :                :         const char *bigcols;    /* column decls if accountIDs are 64 bits */
                               4826                 :                :         int         declare_fillfactor;
                               4827                 :                :     };
                               4828                 :                :     static const struct ddlinfo DDLs[] = {
                               4829                 :                :         {
                               4830                 :                :             "pgbench_history",
                               4831                 :                :             "tid int,bid int,aid    int,delta int,mtime timestamp,filler char(22)",
                               4832                 :                :             "tid int,bid int,aid bigint,delta int,mtime timestamp,filler char(22)",
                               4833                 :                :             0
                               4834                 :                :         },
                               4835                 :                :         {
                               4836                 :                :             "pgbench_tellers",
                               4837                 :                :             "tid int not null,bid int,tbalance int,filler char(84)",
                               4838                 :                :             "tid int not null,bid int,tbalance int,filler char(84)",
                               4839                 :                :             1
                               4840                 :                :         },
                               4841                 :                :         {
                               4842                 :                :             "pgbench_accounts",
                               4843                 :                :             "aid    int not null,bid int,abalance int,filler char(84)",
                               4844                 :                :             "aid bigint not null,bid int,abalance int,filler char(84)",
                               4845                 :                :             1
                               4846                 :                :         },
                               4847                 :                :         {
                               4848                 :                :             "pgbench_branches",
                               4849                 :                :             "bid int not null,bbalance int,filler char(88)",
                               4850                 :                :             "bid int not null,bbalance int,filler char(88)",
                               4851                 :                :             1
                               4852                 :                :         }
                               4853                 :                :     };
                               4854                 :                :     int         i;
                               4855                 :                :     PQExpBufferData query;
                               4856                 :                : 
                               4857                 :              3 :     fprintf(stderr, "creating tables...\n");
                               4858                 :                : 
 1292 heikki.linnakangas@i     4859                 :              3 :     initPQExpBuffer(&query);
                               4860                 :                : 
 6218 ishii@postgresql.org     4861         [ +  + ]:             15 :     for (i = 0; i < lengthof(DDLs); i++)
                               4862                 :                :     {
 3618 tgl@sss.pgh.pa.us        4863                 :             12 :         const struct ddlinfo *ddl = &DDLs[i];
                               4864                 :                : 
                               4865                 :                :         /* Construct new create table statement. */
 1292 heikki.linnakangas@i     4866                 :UBC           0 :         printfPQExpBuffer(&query, "create%s table %s(%s)",
 1292 heikki.linnakangas@i     4867                 :CBC          12 :                           unlogged_tables ? " unlogged" : "",
                               4868         [ +  + ]:             12 :                           ddl->table,
                               4869         [ -  + ]:             12 :                           (scale >= SCALE_32BIT_THRESHOLD) ? ddl->bigcols : ddl->smcols);
                               4870                 :                : 
                               4871                 :                :         /* Partition pgbench_accounts table */
 1657 akapila@postgresql.o     4872   [ +  +  +  + ]:             12 :         if (partition_method != PART_NONE && strcmp(ddl->table, "pgbench_accounts") == 0)
 1292 heikki.linnakangas@i     4873                 :              2 :             appendPQExpBuffer(&query,
 1292 heikki.linnakangas@i     4874                 :GIC           2 :                               " partition by %s (aid)", PARTITION_METHOD[partition_method]);
 1657 akapila@postgresql.o     4875         [ +  + ]:CBC          10 :         else if (ddl->declare_fillfactor)
                               4876                 :                :         {
                               4877                 :                :             /* fillfactor is only expected on actual tables */
 1292 heikki.linnakangas@i     4878                 :              7 :             appendPQExpBuffer(&query, " with (fillfactor=%d)", fillfactor);
                               4879                 :                :         }
                               4880                 :                : 
 4647 rhaas@postgresql.org     4881         [ +  + ]:             12 :         if (tablespace != NULL)
                               4882                 :                :         {
                               4883                 :                :             char       *escape_tablespace;
                               4884                 :                : 
 1292 heikki.linnakangas@i     4885                 :              4 :             escape_tablespace = PQescapeIdentifier(con, tablespace, strlen(tablespace));
                               4886                 :              4 :             appendPQExpBuffer(&query, " tablespace %s", escape_tablespace);
 4647 rhaas@postgresql.org     4887                 :              4 :             PQfreemem(escape_tablespace);
                               4888                 :                :         }
                               4889                 :                : 
 1292 heikki.linnakangas@i     4890                 :             12 :         executeStatement(con, query.data);
                               4891                 :                :     }
                               4892                 :                : 
                               4893                 :              3 :     termPQExpBuffer(&query);
                               4894                 :                : 
 1657 akapila@postgresql.o     4895         [ +  + ]:              3 :     if (partition_method != PART_NONE)
                               4896                 :              2 :         createPartitions(con);
                               4897                 :              3 : }
                               4898                 :                : 
                               4899                 :                : /*
                               4900                 :                :  * Truncate away any old data, in one command in case there are foreign keys
                               4901                 :                :  */
                               4902                 :                : static void
 1621 fujii@postgresql.org     4903                 :              3 : initTruncateTables(PGconn *con)
                               4904                 :                : {
                               4905                 :              3 :     executeStatement(con, "truncate table "
                               4906                 :                :                      "pgbench_accounts, "
                               4907                 :                :                      "pgbench_branches, "
                               4908                 :                :                      "pgbench_history, "
                               4909                 :                :                      "pgbench_tellers");
                               4910                 :              3 : }
                               4911                 :                : 
                               4912                 :                : static void
  265 michael@paquier.xyz      4913                 :GNC           2 : initBranch(PQExpBufferData *sql, int64 curr)
                               4914                 :                : {
                               4915                 :                :     /* "filler" column uses NULL */
                               4916                 :              2 :     printfPQExpBuffer(sql,
                               4917                 :                :                       INT64_FORMAT "\t0\t\\N\n",
                               4918                 :                :                       curr + 1);
                               4919                 :              2 : }
                               4920                 :                : 
                               4921                 :                : static void
                               4922                 :             20 : initTeller(PQExpBufferData *sql, int64 curr)
                               4923                 :                : {
                               4924                 :                :     /* "filler" column uses NULL */
                               4925                 :             20 :     printfPQExpBuffer(sql,
                               4926                 :                :                       INT64_FORMAT "\t" INT64_FORMAT "\t0\t\\N\n",
                               4927                 :             20 :                       curr + 1, curr / ntellers + 1);
                               4928                 :             20 : }
                               4929                 :                : 
                               4930                 :                : static void
                               4931                 :         200000 : initAccount(PQExpBufferData *sql, int64 curr)
                               4932                 :                : {
                               4933                 :                :     /* "filler" column defaults to blank padded empty string */
                               4934                 :         200000 :     printfPQExpBuffer(sql,
                               4935                 :                :                       INT64_FORMAT "\t" INT64_FORMAT "\t0\t\n",
                               4936                 :         200000 :                       curr + 1, curr / naccounts + 1);
                               4937                 :         200000 : }
                               4938                 :                : 
                               4939                 :                : static void
                               4940                 :              6 : initPopulateTable(PGconn *con, const char *table, int64 base,
                               4941                 :                :                   initRowMethod init_row)
                               4942                 :                : {
                               4943                 :                :     int         n;
                               4944                 :                :     int64       k;
                               4945                 :              6 :     int         chars = 0;
                               4946                 :                :     PGresult   *res;
                               4947                 :                :     PQExpBufferData sql;
                               4948                 :                :     char        copy_statement[256];
                               4949                 :              6 :     const char *copy_statement_fmt = "copy %s from stdin";
                               4950                 :              6 :     int64       total = base * scale;
                               4951                 :                : 
                               4952                 :                :     /* used to track elapsed time and estimate of the remaining time */
                               4953                 :                :     pg_time_usec_t start;
 2344 tgl@sss.pgh.pa.us        4954                 :CBC           6 :     int         log_interval = 1;
                               4955                 :                : 
                               4956                 :                :     /* Stay on the same line if reporting to a terminal */
 1593 michael@paquier.xyz      4957         [ -  + ]:              6 :     char        eol = isatty(fileno(stderr)) ? '\r' : '\n';
                               4958                 :                : 
 1292 heikki.linnakangas@i     4959                 :              6 :     initPQExpBuffer(&sql);
                               4960                 :                : 
                               4961                 :                :     /*
                               4962                 :                :      * Use COPY with FREEZE on v14 and later for all the tables except
                               4963                 :                :      * pgbench_accounts when it is partitioned.
                               4964                 :                :      */
  265 michael@paquier.xyz      4965         [ +  - ]:GNC           6 :     if (PQserverVersion(con) >= 140000)
                               4966                 :                :     {
                               4967         [ +  + ]:              6 :         if (strcmp(table, "pgbench_accounts") != 0 ||
                               4968         [ +  + ]:              2 :             partitions == 0)
                               4969                 :              5 :             copy_statement_fmt = "copy %s from stdin with (freeze on)";
                               4970                 :                :     }
                               4971                 :                : 
                               4972                 :              6 :     n = pg_snprintf(copy_statement, sizeof(copy_statement), copy_statement_fmt, table);
                               4973         [ -  + ]:              6 :     if (n >= sizeof(copy_statement))
  265 michael@paquier.xyz      4974                 :UNC           0 :         pg_fatal("invalid buffer size: must be at least %d characters long", n);
  265 michael@paquier.xyz      4975         [ -  + ]:GNC           6 :     else if (n == -1)
  265 michael@paquier.xyz      4976                 :UNC           0 :         pg_fatal("invalid format string");
                               4977                 :                : 
  955 ishii@postgresql.org     4978                 :CBC           6 :     res = PQexec(con, copy_statement);
                               4979                 :                : 
 6218                          4980         [ -  + ]:              6 :     if (PQresultStatus(res) != PGRES_COPY_IN)
  737 tgl@sss.pgh.pa.us        4981                 :UBC           0 :         pg_fatal("unexpected copy in result: %s", PQerrorMessage(con));
 7244 ishii@postgresql.org     4982                 :CBC           6 :     PQclear(res);
                               4983                 :                : 
 1131 tmunro@postgresql.or     4984                 :              6 :     start = pg_time_now();
                               4985                 :                : 
  265 michael@paquier.xyz      4986         [ +  + ]:GNC      200028 :     for (k = 0; k < total; k++)
                               4987                 :                :     {
 4093 heikki.linnakangas@i     4988                 :CBC      200022 :         int64       j = k + 1;
                               4989                 :                : 
  265 michael@paquier.xyz      4990                 :GNC      200022 :         init_row(&sql, k);
 1292 heikki.linnakangas@i     4991         [ -  + ]:CBC      200022 :         if (PQputline(con, sql.data))
  737 tgl@sss.pgh.pa.us        4992                 :UBC           0 :             pg_fatal("PQputline failed");
                               4993                 :                : 
 1595 michael@paquier.xyz      4994         [ -  + ]:CBC      200022 :         if (CancelRequested)
 1595 michael@paquier.xyz      4995                 :UBC           0 :             break;
                               4996                 :                : 
                               4997                 :                :         /*
                               4998                 :                :          * If we want to stick with the original logging, print a message each
                               4999                 :                :          * 100k inserted rows.
                               5000                 :                :          */
 3973 bruce@momjian.us         5001   [ +  +  +  + ]:CBC      200022 :         if ((!use_quiet) && (j % 100000 == 0))
 4115 ishii@postgresql.org     5002                 :              1 :         {
 1131 tmunro@postgresql.or     5003                 :              1 :             double      elapsed_sec = PG_TIME_GET_DOUBLE(pg_time_now() - start);
  265 michael@paquier.xyz      5004                 :GNC           1 :             double      remaining_sec = ((double) total - j) * elapsed_sec / j;
                               5005                 :                : 
                               5006                 :              1 :             chars = fprintf(stderr, INT64_FORMAT " of " INT64_FORMAT " tuples (%d%%) of %s done (elapsed %.2f s, remaining %.2f s)%c",
                               5007                 :                :                             j, total,
                               5008                 :              1 :                             (int) ((j * 100) / total),
                               5009                 :                :                             table, elapsed_sec, remaining_sec, eol);
                               5010                 :                :         }
                               5011                 :                :         /* let's not call the timing for each row, but only each 100 rows */
 4115 ishii@postgresql.org     5012   [ +  +  +  + ]:CBC      200021 :         else if (use_quiet && (j % 100 == 0))
                               5013                 :                :         {
 1131 tmunro@postgresql.or     5014                 :           1000 :             double      elapsed_sec = PG_TIME_GET_DOUBLE(pg_time_now() - start);
  265 michael@paquier.xyz      5015                 :GNC        1000 :             double      remaining_sec = ((double) total - j) * elapsed_sec / j;
                               5016                 :                : 
                               5017                 :                :             /* have we reached the next interval (or end)? */
                               5018   [ +  +  -  + ]:           1000 :             if ((j == total) || (elapsed_sec >= log_interval * LOG_STEP_SECONDS))
                               5019                 :                :             {
                               5020                 :              1 :                 chars = fprintf(stderr, INT64_FORMAT " of " INT64_FORMAT " tuples (%d%%) of %s done (elapsed %.2f s, remaining %.2f s)%c",
                               5021                 :                :                                 j, total,
                               5022                 :              1 :                                 (int) ((j * 100) / total),
                               5023                 :                :                                 table, elapsed_sec, remaining_sec, eol);
                               5024                 :                : 
                               5025                 :                :                 /* skip to the next interval */
 3973 bruce@momjian.us         5026                 :CBC           1 :                 log_interval = (int) ceil(elapsed_sec / LOG_STEP_SECONDS);
                               5027                 :                :             }
                               5028                 :                :         }
                               5029                 :                :     }
                               5030                 :                : 
  265 michael@paquier.xyz      5031   [ +  +  -  + ]:GNC           6 :     if (chars != 0 && eol != '\n')
  265 michael@paquier.xyz      5032                 :UNC           0 :         fprintf(stderr, "%*c\r", chars - 1, ' '); /* Clear the current line */
                               5033                 :                : 
 6218 ishii@postgresql.org     5034         [ -  + ]:CBC           6 :     if (PQputline(con, "\\.\n"))
  737 tgl@sss.pgh.pa.us        5035                 :UBC           0 :         pg_fatal("very last PQputline failed");
 6218 ishii@postgresql.org     5036         [ -  + ]:CBC           6 :     if (PQendcopy(con))
  737 tgl@sss.pgh.pa.us        5037                 :UBC           0 :         pg_fatal("PQendcopy failed");
                               5038                 :                : 
 1292 heikki.linnakangas@i     5039                 :CBC           6 :     termPQExpBuffer(&sql);
  265 michael@paquier.xyz      5040                 :GNC           6 : }
                               5041                 :                : 
                               5042                 :                : /*
                               5043                 :                :  * Fill the standard tables with some data generated and sent from the client.
                               5044                 :                :  *
                               5045                 :                :  * The filler column is NULL in pgbench_branches and pgbench_tellers, and is
                               5046                 :                :  * a blank-padded string in pgbench_accounts.
                               5047                 :                :  */
                               5048                 :                : static void
                               5049                 :              2 : initGenerateDataClientSide(PGconn *con)
                               5050                 :                : {
                               5051                 :              2 :     fprintf(stderr, "generating data (client-side)...\n");
                               5052                 :                : 
                               5053                 :                :     /*
                               5054                 :                :      * we do all of this in one transaction to enable the backend's
                               5055                 :                :      * data-loading optimizations
                               5056                 :                :      */
                               5057                 :              2 :     executeStatement(con, "begin");
                               5058                 :                : 
                               5059                 :                :     /* truncate away any old data */
                               5060                 :              2 :     initTruncateTables(con);
                               5061                 :                : 
                               5062                 :                :     /*
                               5063                 :                :      * fill branches, tellers, accounts in that order in case foreign keys
                               5064                 :                :      * already exist
                               5065                 :                :      */
                               5066                 :              2 :     initPopulateTable(con, "pgbench_branches", nbranches, initBranch);
                               5067                 :              2 :     initPopulateTable(con, "pgbench_tellers", ntellers, initTeller);
                               5068                 :              2 :     initPopulateTable(con, "pgbench_accounts", naccounts, initAccount);
                               5069                 :                : 
 6218 ishii@postgresql.org     5070                 :CBC           2 :     executeStatement(con, "commit");
 2344 tgl@sss.pgh.pa.us        5071                 :              2 : }
                               5072                 :                : 
                               5073                 :                : /*
                               5074                 :                :  * Fill the standard tables with some data generated on the server
                               5075                 :                :  *
                               5076                 :                :  * As already the case with the client-side data generation, the filler
                               5077                 :                :  * column defaults to NULL in pgbench_branches and pgbench_tellers,
                               5078                 :                :  * and is a blank-padded string in pgbench_accounts.
                               5079                 :                :  */
                               5080                 :                : static void
 1621 fujii@postgresql.org     5081                 :              1 : initGenerateDataServerSide(PGconn *con)
                               5082                 :                : {
                               5083                 :                :     PQExpBufferData sql;
                               5084                 :                : 
                               5085                 :              1 :     fprintf(stderr, "generating data (server-side)...\n");
                               5086                 :                : 
                               5087                 :                :     /*
                               5088                 :                :      * we do all of this in one transaction to enable the backend's
                               5089                 :                :      * data-loading optimizations
                               5090                 :                :      */
                               5091                 :              1 :     executeStatement(con, "begin");
                               5092                 :                : 
                               5093                 :                :     /* truncate away any old data */
                               5094                 :              1 :     initTruncateTables(con);
                               5095                 :                : 
 1292 heikki.linnakangas@i     5096                 :              1 :     initPQExpBuffer(&sql);
                               5097                 :                : 
                               5098                 :              1 :     printfPQExpBuffer(&sql,
                               5099                 :                :                       "insert into pgbench_branches(bid,bbalance) "
                               5100                 :                :                       "select bid, 0 "
                               5101                 :                :                       "from generate_series(1, %d) as bid", nbranches * scale);
                               5102                 :              1 :     executeStatement(con, sql.data);
                               5103                 :                : 
                               5104                 :              1 :     printfPQExpBuffer(&sql,
                               5105                 :                :                       "insert into pgbench_tellers(tid,bid,tbalance) "
                               5106                 :                :                       "select tid, (tid - 1) / %d + 1, 0 "
                               5107                 :                :                       "from generate_series(1, %d) as tid", ntellers, ntellers * scale);
                               5108                 :              1 :     executeStatement(con, sql.data);
                               5109                 :                : 
                               5110                 :              1 :     printfPQExpBuffer(&sql,
                               5111                 :                :                       "insert into pgbench_accounts(aid,bid,abalance,filler) "
                               5112                 :                :                       "select aid, (aid - 1) / %d + 1, 0, '' "
                               5113                 :                :                       "from generate_series(1, " INT64_FORMAT ") as aid",
                               5114                 :                :                       naccounts, (int64) naccounts * scale);
                               5115                 :              1 :     executeStatement(con, sql.data);
                               5116                 :                : 
                               5117                 :              1 :     termPQExpBuffer(&sql);
                               5118                 :                : 
 1621 fujii@postgresql.org     5119                 :              1 :     executeStatement(con, "commit");
                               5120                 :              1 : }
                               5121                 :                : 
                               5122                 :                : /*
                               5123                 :                :  * Invoke vacuum on the standard tables
                               5124                 :                :  */
                               5125                 :                : static void
 2344 tgl@sss.pgh.pa.us        5126                 :              2 : initVacuum(PGconn *con)
                               5127                 :                : {
                               5128                 :              2 :     fprintf(stderr, "vacuuming...\n");
                               5129                 :              2 :     executeStatement(con, "vacuum analyze pgbench_branches");
                               5130                 :              2 :     executeStatement(con, "vacuum analyze pgbench_tellers");
                               5131                 :              2 :     executeStatement(con, "vacuum analyze pgbench_accounts");
                               5132                 :              2 :     executeStatement(con, "vacuum analyze pgbench_history");
                               5133                 :              2 : }
                               5134                 :                : 
                               5135                 :                : /*
                               5136                 :                :  * Create primary keys on the standard tables
                               5137                 :                :  */
                               5138                 :                : static void
                               5139                 :              3 : initCreatePKeys(PGconn *con)
                               5140                 :                : {
                               5141                 :                :     static const char *const DDLINDEXes[] = {
                               5142                 :                :         "alter table pgbench_branches add primary key (bid)",
                               5143                 :                :         "alter table pgbench_tellers add primary key (tid)",
                               5144                 :                :         "alter table pgbench_accounts add primary key (aid)"
                               5145                 :                :     };
                               5146                 :                :     int         i;
                               5147                 :                :     PQExpBufferData query;
                               5148                 :                : 
                               5149                 :              3 :     fprintf(stderr, "creating primary keys...\n");
 1292 heikki.linnakangas@i     5150                 :              3 :     initPQExpBuffer(&query);
                               5151                 :                : 
 3618 tgl@sss.pgh.pa.us        5152         [ +  + ]:             12 :     for (i = 0; i < lengthof(DDLINDEXes); i++)
                               5153                 :                :     {
 1292 heikki.linnakangas@i     5154                 :              9 :         resetPQExpBuffer(&query);
                               5155                 :              9 :         appendPQExpBufferStr(&query, DDLINDEXes[i]);
                               5156                 :                : 
 4647 rhaas@postgresql.org     5157         [ +  + ]:              9 :         if (index_tablespace != NULL)
                               5158                 :                :         {
                               5159                 :                :             char       *escape_tablespace;
                               5160                 :                : 
                               5161                 :              3 :             escape_tablespace = PQescapeIdentifier(con, index_tablespace,
                               5162                 :                :                                                    strlen(index_tablespace));
 1292 heikki.linnakangas@i     5163                 :              3 :             appendPQExpBuffer(&query, " using index tablespace %s", escape_tablespace);
 4647 rhaas@postgresql.org     5164                 :              3 :             PQfreemem(escape_tablespace);
                               5165                 :                :         }
                               5166                 :                : 
 1292 heikki.linnakangas@i     5167                 :              9 :         executeStatement(con, query.data);
                               5168                 :                :     }
                               5169                 :                : 
                               5170                 :              3 :     termPQExpBuffer(&query);
 2344 tgl@sss.pgh.pa.us        5171                 :              3 : }
                               5172                 :                : 
                               5173                 :                : /*
                               5174                 :                :  * Create foreign key constraints between the standard tables
                               5175                 :                :  */
                               5176                 :                : static void
                               5177                 :              2 : initCreateFKeys(PGconn *con)
                               5178                 :                : {
                               5179                 :                :     static const char *const DDLKEYs[] = {
                               5180                 :                :         "alter table pgbench_tellers add constraint pgbench_tellers_bid_fkey foreign key (bid) references pgbench_branches",
                               5181                 :                :         "alter table pgbench_accounts add constraint pgbench_accounts_bid_fkey foreign key (bid) references pgbench_branches",
                               5182                 :                :         "alter table pgbench_history add constraint pgbench_history_bid_fkey foreign key (bid) references pgbench_branches",
                               5183                 :                :         "alter table pgbench_history add constraint pgbench_history_tid_fkey foreign key (tid) references pgbench_tellers",
                               5184                 :                :         "alter table pgbench_history add constraint pgbench_history_aid_fkey foreign key (aid) references pgbench_accounts"
                               5185                 :                :     };
                               5186                 :                :     int         i;
                               5187                 :                : 
                               5188                 :              2 :     fprintf(stderr, "creating foreign keys...\n");
                               5189         [ +  + ]:             12 :     for (i = 0; i < lengthof(DDLKEYs); i++)
                               5190                 :                :     {
                               5191                 :             10 :         executeStatement(con, DDLKEYs[i]);
                               5192                 :                :     }
                               5193                 :              2 : }
                               5194                 :                : 
                               5195                 :                : /*
                               5196                 :                :  * Validate an initialization-steps string
                               5197                 :                :  *
                               5198                 :                :  * (We could just leave it to runInitSteps() to fail if there are wrong
                               5199                 :                :  * characters, but since initialization can take awhile, it seems friendlier
                               5200                 :                :  * to check during option parsing.)
                               5201                 :                :  */
                               5202                 :                : static void
                               5203                 :              4 : checkInitSteps(const char *initialize_steps)
                               5204                 :                : {
                               5205         [ -  + ]:              4 :     if (initialize_steps[0] == '\0')
  737 tgl@sss.pgh.pa.us        5206                 :UBC           0 :         pg_fatal("no initialization steps specified");
                               5207                 :                : 
 1621 fujii@postgresql.org     5208         [ +  + ]:CBC          21 :     for (const char *step = initialize_steps; *step != '\0'; step++)
                               5209                 :                :     {
                               5210         [ +  + ]:             18 :         if (strchr(ALL_INIT_STEPS " ", *step) == NULL)
                               5211                 :                :         {
  737 tgl@sss.pgh.pa.us        5212                 :              1 :             pg_log_error("unrecognized initialization step \"%c\"", *step);
                               5213                 :              1 :             pg_log_error_detail("Allowed step characters are: \"" ALL_INIT_STEPS "\".");
 2344                          5214                 :              1 :             exit(1);
                               5215                 :                :         }
                               5216                 :                :     }
                               5217                 :              3 : }
                               5218                 :                : 
                               5219                 :                : /*
                               5220                 :                :  * Invoke each initialization step in the given string
                               5221                 :                :  */
                               5222                 :                : static void
                               5223                 :              3 : runInitSteps(const char *initialize_steps)
                               5224                 :                : {
                               5225                 :                :     PQExpBufferData stats;
                               5226                 :                :     PGconn     *con;
                               5227                 :                :     const char *step;
 1734 tmunro@postgresql.or     5228                 :              3 :     double      run_time = 0.0;
                               5229                 :              3 :     bool        first = true;
                               5230                 :                : 
                               5231                 :              3 :     initPQExpBuffer(&stats);
                               5232                 :                : 
 2344 tgl@sss.pgh.pa.us        5233         [ -  + ]:              3 :     if ((con = doConnect()) == NULL)
  737 tgl@sss.pgh.pa.us        5234                 :UBC           0 :         pg_fatal("could not create connection for initialization");
                               5235                 :                : 
 1595 michael@paquier.xyz      5236                 :CBC           3 :     setup_cancel_handler(NULL);
                               5237                 :              3 :     SetCancelConn(con);
                               5238                 :                : 
 2344 tgl@sss.pgh.pa.us        5239         [ +  + ]:             22 :     for (step = initialize_steps; *step != '\0'; step++)
                               5240                 :                :     {
 1734 tmunro@postgresql.or     5241                 :             19 :         char       *op = NULL;
 1131                          5242                 :             19 :         pg_time_usec_t start = pg_time_now();
                               5243                 :                : 
 2344 tgl@sss.pgh.pa.us        5244   [ +  +  +  +  :             19 :         switch (*step)
                                        +  +  +  +  
                                                 - ]
                               5245                 :                :         {
                               5246                 :              3 :             case 'd':
 1734 tmunro@postgresql.or     5247                 :              3 :                 op = "drop tables";
 2344 tgl@sss.pgh.pa.us        5248                 :              3 :                 initDropTables(con);
                               5249                 :              3 :                 break;
                               5250                 :              3 :             case 't':
 1734 tmunro@postgresql.or     5251                 :              3 :                 op = "create tables";
 2344 tgl@sss.pgh.pa.us        5252                 :              3 :                 initCreateTables(con);
                               5253                 :              3 :                 break;
                               5254                 :              2 :             case 'g':
 1621 fujii@postgresql.org     5255                 :              2 :                 op = "client-side generate";
                               5256                 :              2 :                 initGenerateDataClientSide(con);
                               5257                 :              2 :                 break;
                               5258                 :              1 :             case 'G':
                               5259                 :              1 :                 op = "server-side generate";
                               5260                 :              1 :                 initGenerateDataServerSide(con);
 2344 tgl@sss.pgh.pa.us        5261                 :              1 :                 break;
                               5262                 :              2 :             case 'v':
 1734 tmunro@postgresql.or     5263                 :              2 :                 op = "vacuum";
 2344 tgl@sss.pgh.pa.us        5264                 :              2 :                 initVacuum(con);
                               5265                 :              2 :                 break;
                               5266                 :              3 :             case 'p':
 1734 tmunro@postgresql.or     5267                 :              3 :                 op = "primary keys";
 2344 tgl@sss.pgh.pa.us        5268                 :              3 :                 initCreatePKeys(con);
                               5269                 :              3 :                 break;
                               5270                 :              2 :             case 'f':
 1734 tmunro@postgresql.or     5271                 :              2 :                 op = "foreign keys";
 2344 tgl@sss.pgh.pa.us        5272                 :              2 :                 initCreateFKeys(con);
                               5273                 :              2 :                 break;
                               5274                 :              3 :             case ' ':
                               5275                 :              3 :                 break;          /* ignore */
 2344 tgl@sss.pgh.pa.us        5276                 :UBC           0 :             default:
  737                          5277                 :              0 :                 pg_log_error("unrecognized initialization step \"%c\"", *step);
 2344                          5278                 :              0 :                 PQfinish(con);
                               5279                 :              0 :                 exit(1);
                               5280                 :                :         }
                               5281                 :                : 
 1734 tmunro@postgresql.or     5282         [ +  + ]:CBC          19 :         if (op != NULL)
                               5283                 :                :         {
 1131                          5284                 :             16 :             double      elapsed_sec = PG_TIME_GET_DOUBLE(pg_time_now() - start);
                               5285                 :                : 
 1734                          5286         [ +  + ]:             16 :             if (!first)
                               5287                 :             13 :                 appendPQExpBufferStr(&stats, ", ");
                               5288                 :                :             else
                               5289                 :              3 :                 first = false;
                               5290                 :                : 
                               5291                 :             16 :             appendPQExpBuffer(&stats, "%s %.2f s", op, elapsed_sec);
                               5292                 :                : 
                               5293                 :             16 :             run_time += elapsed_sec;
                               5294                 :                :         }
                               5295                 :                :     }
                               5296                 :                : 
                               5297                 :              3 :     fprintf(stderr, "done in %.2f s (%s).\n", run_time, stats.data);
 1595 michael@paquier.xyz      5298                 :              3 :     ResetCancelConn();
 8768 bruce@momjian.us         5299                 :              3 :     PQfinish(con);
 1734 tmunro@postgresql.or     5300                 :              3 :     termPQExpBuffer(&stats);
 8768 bruce@momjian.us         5301                 :              3 : }
                               5302                 :                : 
                               5303                 :                : /*
                               5304                 :                :  * Extract pgbench table information into global variables scale,
                               5305                 :                :  * partition_method and partitions.
                               5306                 :                :  */
                               5307                 :                : static void
 1657 akapila@postgresql.o     5308                 :              7 : GetTableInfo(PGconn *con, bool scale_given)
                               5309                 :                : {
                               5310                 :                :     PGresult   *res;
                               5311                 :                : 
                               5312                 :                :     /*
                               5313                 :                :      * get the scaling factor that should be same as count(*) from
                               5314                 :                :      * pgbench_branches if this is not a custom query
                               5315                 :                :      */
                               5316                 :              7 :     res = PQexec(con, "select count(*) from pgbench_branches");
                               5317         [ +  + ]:              7 :     if (PQresultStatus(res) != PGRES_TUPLES_OK)
                               5318                 :                :     {
                               5319                 :              1 :         char       *sqlState = PQresultErrorField(res, PG_DIAG_SQLSTATE);
                               5320                 :                : 
  737 tgl@sss.pgh.pa.us        5321                 :              1 :         pg_log_error("could not count number of branches: %s", PQerrorMessage(con));
                               5322                 :                : 
 1657 akapila@postgresql.o     5323   [ +  -  +  - ]:              1 :         if (sqlState && strcmp(sqlState, ERRCODE_UNDEFINED_TABLE) == 0)
  737 tgl@sss.pgh.pa.us        5324                 :              1 :             pg_log_error_hint("Perhaps you need to do initialization (\"pgbench -i\") in database \"%s\".",
                               5325                 :                :                               PQdb(con));
                               5326                 :                : 
 1657 akapila@postgresql.o     5327                 :              1 :         exit(1);
                               5328                 :                :     }
                               5329                 :              6 :     scale = atoi(PQgetvalue(res, 0, 0));
                               5330         [ -  + ]:              6 :     if (scale < 0)
  737 tgl@sss.pgh.pa.us        5331                 :UBC           0 :         pg_fatal("invalid count(*) from pgbench_branches: \"%s\"",
                               5332                 :                :                  PQgetvalue(res, 0, 0));
 1657 akapila@postgresql.o     5333                 :CBC           6 :     PQclear(res);
                               5334                 :                : 
                               5335                 :                :     /* warn if we override user-given -s switch */
                               5336         [ +  + ]:              6 :     if (scale_given)
 1558 peter@eisentraut.org     5337                 :              1 :         pg_log_warning("scale option ignored, using count from pgbench_branches table (%d)",
                               5338                 :                :                        scale);
                               5339                 :                : 
                               5340                 :                :     /*
                               5341                 :                :      * Get the partition information for the first "pgbench_accounts" table
                               5342                 :                :      * found in search_path.
                               5343                 :                :      *
                               5344                 :                :      * The result is empty if no "pgbench_accounts" is found.
                               5345                 :                :      *
                               5346                 :                :      * Otherwise, it always returns one row even if the table is not
                               5347                 :                :      * partitioned (in which case the partition strategy is NULL).
                               5348                 :                :      *
                               5349                 :                :      * The number of partitions can be 0 even for partitioned tables, if no
                               5350                 :                :      * partition is attached.
                               5351                 :                :      *
                               5352                 :                :      * We assume no partitioning on any failure, so as to avoid failing on an
                               5353                 :                :      * old version without "pg_partitioned_table".
                               5354                 :                :      */
 1657 akapila@postgresql.o     5355                 :              6 :     res = PQexec(con,
                               5356                 :                :                  "select o.n, p.partstrat, pg_catalog.count(i.inhparent) "
                               5357                 :                :                  "from pg_catalog.pg_class as c "
                               5358                 :                :                  "join pg_catalog.pg_namespace as n on (n.oid = c.relnamespace) "
                               5359                 :                :                  "cross join lateral (select pg_catalog.array_position(pg_catalog.current_schemas(true), n.nspname)) as o(n) "
                               5360                 :                :                  "left join pg_catalog.pg_partitioned_table as p on (p.partrelid = c.oid) "
                               5361                 :                :                  "left join pg_catalog.pg_inherits as i on (c.oid = i.inhparent) "
                               5362                 :                :                  "where c.relname = 'pgbench_accounts' and o.n is not null "
                               5363                 :                :                  "group by 1, 2 "
                               5364                 :                :                  "order by 1 asc "
                               5365                 :                :                  "limit 1");
                               5366                 :                : 
                               5367         [ -  + ]:              6 :     if (PQresultStatus(res) != PGRES_TUPLES_OK)
                               5368                 :                :     {
                               5369                 :                :         /* probably an older version, coldly assume no partitioning */
 1657 akapila@postgresql.o     5370                 :UBC           0 :         partition_method = PART_NONE;
                               5371                 :              0 :         partitions = 0;
                               5372                 :                :     }
 1657 akapila@postgresql.o     5373         [ -  + ]:CBC           6 :     else if (PQntuples(res) == 0)
                               5374                 :                :     {
                               5375                 :                :         /*
                               5376                 :                :          * This case is unlikely as pgbench already found "pgbench_branches"
                               5377                 :                :          * above to compute the scale.
                               5378                 :                :          */
  737 tgl@sss.pgh.pa.us        5379                 :UBC           0 :         pg_log_error("no pgbench_accounts table found in search_path");
                               5380                 :              0 :         pg_log_error_hint("Perhaps you need to do initialization (\"pgbench -i\") in database \"%s\".", PQdb(con));
 1657 akapila@postgresql.o     5381                 :              0 :         exit(1);
                               5382                 :                :     }
                               5383                 :                :     else                        /* PQntuples(res) == 1 */
                               5384                 :                :     {
                               5385                 :                :         /* normal case, extract partition information */
 1657 akapila@postgresql.o     5386         [ -  + ]:CBC           6 :         if (PQgetisnull(res, 0, 1))
 1657 akapila@postgresql.o     5387                 :UBC           0 :             partition_method = PART_NONE;
                               5388                 :                :         else
                               5389                 :                :         {
 1657 akapila@postgresql.o     5390                 :CBC           6 :             char       *ps = PQgetvalue(res, 0, 1);
                               5391                 :                : 
                               5392                 :                :             /* column must be there */
                               5393         [ -  + ]:              6 :             Assert(ps != NULL);
                               5394                 :                : 
                               5395         [ +  - ]:              6 :             if (strcmp(ps, "r") == 0)
                               5396                 :              6 :                 partition_method = PART_RANGE;
 1657 akapila@postgresql.o     5397         [ #  # ]:UBC           0 :             else if (strcmp(ps, "h") == 0)
                               5398                 :              0 :                 partition_method = PART_HASH;
                               5399                 :                :             else
                               5400                 :                :             {
                               5401                 :                :                 /* possibly a newer version with new partition method */
  737 tgl@sss.pgh.pa.us        5402                 :              0 :                 pg_fatal("unexpected partition method: \"%s\"", ps);
                               5403                 :                :             }
                               5404                 :                :         }
                               5405                 :                : 
 1657 akapila@postgresql.o     5406                 :CBC           6 :         partitions = atoi(PQgetvalue(res, 0, 2));
                               5407                 :                :     }
                               5408                 :                : 
                               5409                 :              6 :     PQclear(res);
                               5410                 :              6 : }
                               5411                 :                : 
                               5412                 :                : /*
                               5413                 :                :  * Replace :param with $n throughout the command's SQL text, which
                               5414                 :                :  * is a modifiable string in cmd->lines.
                               5415                 :                :  */
                               5416                 :                : static bool
 2438 tgl@sss.pgh.pa.us        5417                 :             72 : parseQuery(Command *cmd)
                               5418                 :                : {
                               5419                 :                :     char       *sql,
                               5420                 :                :                *p;
                               5421                 :                : 
 5870 ishii@postgresql.org     5422                 :             72 :     cmd->argc = 1;
                               5423                 :                : 
 1921 alvherre@alvh.no-ip.     5424                 :             72 :     p = sql = pg_strdup(cmd->lines.data);
 5870 ishii@postgresql.org     5425         [ +  + ]:            368 :     while ((p = strchr(p, ':')) != NULL)
                               5426                 :                :     {
                               5427                 :                :         char        var[13];
                               5428                 :                :         char       *name;
                               5429                 :                :         int         eaten;
                               5430                 :                : 
                               5431                 :            297 :         name = parseVariable(p, &eaten);
                               5432         [ +  + ]:            297 :         if (name == NULL)
                               5433                 :                :         {
 5421 bruce@momjian.us         5434         [ +  + ]:             48 :             while (*p == ':')
                               5435                 :                :             {
                               5436                 :             32 :                 p++;
                               5437                 :                :             }
 5870 ishii@postgresql.org     5438                 :             16 :             continue;
                               5439                 :                :         }
                               5440                 :                : 
                               5441                 :                :         /*
                               5442                 :                :          * cmd->argv[0] is the SQL statement itself, so the max number of
                               5443                 :                :          * arguments is one less than MAX_ARGS
                               5444                 :                :          */
                               5445         [ +  + ]:            281 :         if (cmd->argc >= MAX_ARGS)
                               5446                 :                :         {
 1558 peter@eisentraut.org     5447                 :              1 :             pg_log_error("statement has too many arguments (maximum is %d): %s",
                               5448                 :                :                          MAX_ARGS - 1, cmd->lines.data);
 3393 ishii@postgresql.org     5449                 :              1 :             pg_free(name);
 5870                          5450                 :              1 :             return false;
                               5451                 :                :         }
                               5452                 :                : 
                               5453                 :            280 :         sprintf(var, "$%d", cmd->argc);
 4994 tgl@sss.pgh.pa.us        5454                 :            280 :         p = replaceVariable(&sql, p, eaten, var);
                               5455                 :                : 
 5870 ishii@postgresql.org     5456                 :            280 :         cmd->argv[cmd->argc] = name;
                               5457                 :            280 :         cmd->argc++;
                               5458                 :                :     }
                               5459                 :                : 
 1921 alvherre@alvh.no-ip.     5460         [ -  + ]:             71 :     Assert(cmd->argv[0] == NULL);
 5870 ishii@postgresql.org     5461                 :             71 :     cmd->argv[0] = sql;
                               5462                 :             71 :     return true;
                               5463                 :                : }
                               5464                 :                : 
                               5465                 :                : /*
                               5466                 :                :  * syntax error while parsing a script (in practice, while parsing a
                               5467                 :                :  * backslash command, because we don't detect syntax errors in SQL)
                               5468                 :                :  *
                               5469                 :                :  * source: source of script (filename or builtin-script ID)
                               5470                 :                :  * lineno: line number within script (count from 1)
                               5471                 :                :  * line: whole line of backslash command, if available
                               5472                 :                :  * command: backslash command name, if available
                               5473                 :                :  * msg: the actual error message
                               5474                 :                :  * more: optional extra message
                               5475                 :                :  * column: zero-based column number, or -1 if unknown
                               5476                 :                :  */
                               5477                 :                : void
 2947 tgl@sss.pgh.pa.us        5478                 :             33 : syntax_error(const char *source, int lineno,
                               5479                 :                :              const char *line, const char *command,
                               5480                 :                :              const char *msg, const char *more, int column)
                               5481                 :                : {
                               5482                 :                :     PQExpBufferData buf;
                               5483                 :                : 
 1558 peter@eisentraut.org     5484                 :             33 :     initPQExpBuffer(&buf);
                               5485                 :                : 
                               5486                 :             33 :     printfPQExpBuffer(&buf, "%s:%d: %s", source, lineno, msg);
 3300 rhaas@postgresql.org     5487         [ +  + ]:             33 :     if (more != NULL)
 1558 peter@eisentraut.org     5488                 :             15 :         appendPQExpBuffer(&buf, " (%s)", more);
 2947 tgl@sss.pgh.pa.us        5489   [ +  +  -  + ]:             33 :     if (column >= 0 && line == NULL)
 1558 peter@eisentraut.org     5490                 :UBC           0 :         appendPQExpBuffer(&buf, " at column %d", column + 1);
 2947 tgl@sss.pgh.pa.us        5491         [ +  + ]:CBC          33 :     if (command != NULL)
 1558 peter@eisentraut.org     5492                 :             30 :         appendPQExpBuffer(&buf, " in command \"%s\"", command);
                               5493                 :                : 
  737 tgl@sss.pgh.pa.us        5494                 :             33 :     pg_log_error("%s", buf.data);
                               5495                 :                : 
 1558 peter@eisentraut.org     5496                 :             33 :     termPQExpBuffer(&buf);
                               5497                 :                : 
 3300 rhaas@postgresql.org     5498         [ +  + ]:             33 :     if (line != NULL)
                               5499                 :                :     {
                               5500                 :             28 :         fprintf(stderr, "%s\n", line);
 2947 tgl@sss.pgh.pa.us        5501         [ +  + ]:             28 :         if (column >= 0)
 1431                          5502                 :             21 :             fprintf(stderr, "%*c error found here\n", column + 1, '^');
                               5503                 :                :     }
                               5504                 :                : 
 3300 rhaas@postgresql.org     5505                 :             33 :     exit(1);
                               5506                 :                : }
                               5507                 :                : 
                               5508                 :                : /*
                               5509                 :                :  * Return a pointer to the start of the SQL command, after skipping over
                               5510                 :                :  * whitespace and "--" comments.
                               5511                 :                :  * If the end of the string is reached, return NULL.
                               5512                 :                :  */
                               5513                 :                : static char *
 1921 alvherre@alvh.no-ip.     5514                 :           1059 : skip_sql_comments(char *sql_command)
                               5515                 :                : {
                               5516                 :           1059 :     char       *p = sql_command;
                               5517                 :                : 
                               5518                 :                :     /* Skip any leading whitespace, as well as "--" style comments */
                               5519                 :                :     for (;;)
                               5520                 :                :     {
 2947 tgl@sss.pgh.pa.us        5521         [ -  + ]:           1059 :         if (isspace((unsigned char) *p))
 2947 tgl@sss.pgh.pa.us        5522                 :UBC           0 :             p++;
 2947 tgl@sss.pgh.pa.us        5523         [ -  + ]:CBC        1059 :         else if (strncmp(p, "--", 2) == 0)
                               5524                 :                :         {
 2947 tgl@sss.pgh.pa.us        5525                 :UBC           0 :             p = strchr(p, '\n');
                               5526         [ #  # ]:              0 :             if (p == NULL)
                               5527                 :              0 :                 return NULL;
                               5528                 :              0 :             p++;
                               5529                 :                :         }
                               5530                 :                :         else
 2947 tgl@sss.pgh.pa.us        5531                 :CBC        1059 :             break;
                               5532                 :                :     }
                               5533                 :                : 
                               5534                 :                :     /* NULL if there's nothing but whitespace and comments */
                               5535         [ +  + ]:           1059 :     if (*p == '\0')
                               5536                 :            685 :         return NULL;
                               5537                 :                : 
 1921 alvherre@alvh.no-ip.     5538                 :            374 :     return p;
                               5539                 :                : }
                               5540                 :                : 
                               5541                 :                : /*
                               5542                 :                :  * Parse a SQL command; return a Command struct, or NULL if it's a comment
                               5543                 :                :  *
                               5544                 :                :  * On entry, psqlscan.l has collected the command into "buf", so we don't
                               5545                 :                :  * really need to do much here except check for comments and set up a Command
                               5546                 :                :  * struct.
                               5547                 :                :  */
                               5548                 :                : static Command *
 1847                          5549                 :           1059 : create_sql_command(PQExpBuffer buf, const char *source)
                               5550                 :                : {
                               5551                 :                :     Command    *my_command;
 1921                          5552                 :           1059 :     char       *p = skip_sql_comments(buf->data);
                               5553                 :                : 
                               5554         [ +  + ]:           1059 :     if (p == NULL)
                               5555                 :            685 :         return NULL;
                               5556                 :                : 
                               5557                 :                :     /* Allocate and initialize Command structure */
                               5558                 :            374 :     my_command = (Command *) pg_malloc(sizeof(Command));
                               5559                 :            374 :     initPQExpBuffer(&my_command->lines);
                               5560                 :            374 :     appendPQExpBufferStr(&my_command->lines, p);
                               5561                 :            374 :     my_command->first_line = NULL;   /* this is set later */
 2947 tgl@sss.pgh.pa.us        5562                 :            374 :     my_command->type = SQL_COMMAND;
 2355                          5563                 :            374 :     my_command->meta = META_NONE;
 1921 alvherre@alvh.no-ip.     5564                 :            374 :     my_command->argc = 0;
  753 ishii@postgresql.org     5565                 :            374 :     my_command->retries = 0;
                               5566                 :            374 :     my_command->failures = 0;
 1921 alvherre@alvh.no-ip.     5567                 :            374 :     memset(my_command->argv, 0, sizeof(my_command->argv));
                               5568                 :            374 :     my_command->varprefix = NULL;    /* allocated later, if needed */
                               5569                 :            374 :     my_command->expr = NULL;
 2947 tgl@sss.pgh.pa.us        5570                 :            374 :     initSimpleStats(&my_command->stats);
  418 alvherre@alvh.no-ip.     5571                 :            374 :     my_command->prepname = NULL; /* set later, if needed */
                               5572                 :                : 
 1921                          5573                 :            374 :     return my_command;
                               5574                 :                : }
                               5575                 :                : 
                               5576                 :                : /* Free a Command structure and associated data */
                               5577                 :                : static void
                               5578                 :             29 : free_command(Command *command)
                               5579                 :                : {
                               5580                 :             29 :     termPQExpBuffer(&command->lines);
  667 peter@eisentraut.org     5581                 :             29 :     pg_free(command->first_line);
 1921 alvherre@alvh.no-ip.     5582         [ +  + ]:             60 :     for (int i = 0; i < command->argc; i++)
                               5583                 :             31 :         pg_free(command->argv[i]);
  667 peter@eisentraut.org     5584                 :             29 :     pg_free(command->varprefix);
                               5585                 :                : 
                               5586                 :                :     /*
                               5587                 :                :      * It should also free expr recursively, but this is currently not needed
                               5588                 :                :      * as only gset commands (which do not have an expression) are freed.
                               5589                 :                :      */
 1921 alvherre@alvh.no-ip.     5590                 :             29 :     pg_free(command);
                               5591                 :             29 : }
                               5592                 :                : 
                               5593                 :                : /*
                               5594                 :                :  * Once an SQL command is fully parsed, possibly by accumulating several
                               5595                 :                :  * parts, complete other fields of the Command structure.
                               5596                 :                :  */
                               5597                 :                : static void
                               5598                 :            243 : postprocess_sql_command(Command *my_command)
                               5599                 :                : {
                               5600                 :                :     char        buffer[128];
                               5601                 :                :     static int  prepnum = 0;
                               5602                 :                : 
                               5603         [ -  + ]:            243 :     Assert(my_command->type == SQL_COMMAND);
                               5604                 :                : 
                               5605                 :                :     /* Save the first line for error display. */
                               5606                 :            243 :     strlcpy(buffer, my_command->lines.data, sizeof(buffer));
                               5607                 :            243 :     buffer[strcspn(buffer, "\n\r")] = '\0';
                               5608                 :            243 :     my_command->first_line = pg_strdup(buffer);
                               5609                 :                : 
                               5610                 :                :     /* Parse query and generate prepared statement name, if necessary */
                               5611   [ +  +  +  - ]:            243 :     switch (querymode)
                               5612                 :                :     {
                               5613                 :            171 :         case QUERY_SIMPLE:
                               5614                 :            171 :             my_command->argv[0] = my_command->lines.data;
                               5615                 :            171 :             my_command->argc++;
                               5616                 :            171 :             break;
                               5617                 :             50 :         case QUERY_PREPARED:
  418                          5618                 :             50 :             my_command->prepname = psprintf("P_%d", prepnum++);
                               5619                 :                :             /* fall through */
                               5620                 :             72 :         case QUERY_EXTENDED:
 1921                          5621         [ +  + ]:             72 :             if (!parseQuery(my_command))
                               5622                 :              1 :                 exit(1);
                               5623                 :             71 :             break;
 1921 alvherre@alvh.no-ip.     5624                 :UBC           0 :         default:
                               5625                 :              0 :             exit(1);
                               5626                 :                :     }
 1921 alvherre@alvh.no-ip.     5627                 :CBC         242 : }
                               5628                 :                : 
                               5629                 :                : /*
                               5630                 :                :  * Parse a backslash command; return a Command struct, or NULL if comment
                               5631                 :                :  *
                               5632                 :                :  * At call, we have scanned only the initial backslash.
                               5633                 :                :  */
                               5634                 :                : static Command *
 2947 tgl@sss.pgh.pa.us        5635                 :            482 : process_backslash_command(PsqlScanState sstate, const char *source)
                               5636                 :                : {
                               5637                 :                :     Command    *my_command;
                               5638                 :                :     PQExpBufferData word_buf;
                               5639                 :                :     int         word_offset;
                               5640                 :                :     int         offsets[MAX_ARGS];  /* offsets of argument words */
                               5641                 :                :     int         start_offset;
                               5642                 :                :     int         lineno;
                               5643                 :                :     int         j;
                               5644                 :                : 
                               5645                 :            482 :     initPQExpBuffer(&word_buf);
                               5646                 :                : 
                               5647                 :                :     /* Remember location of the backslash */
                               5648                 :            482 :     start_offset = expr_scanner_offset(sstate) - 1;
                               5649                 :            482 :     lineno = expr_scanner_get_lineno(sstate, start_offset);
                               5650                 :                : 
                               5651                 :                :     /* Collect first word of command */
                               5652         [ -  + ]:            482 :     if (!expr_lex_one_word(sstate, &word_buf, &word_offset))
                               5653                 :                :     {
 2947 tgl@sss.pgh.pa.us        5654                 :UBC           0 :         termPQExpBuffer(&word_buf);
 6767 ishii@postgresql.org     5655                 :              0 :         return NULL;
                               5656                 :                :     }
                               5657                 :                : 
                               5658                 :                :     /* Allocate and initialize Command structure */
 2947 tgl@sss.pgh.pa.us        5659                 :CBC         482 :     my_command = (Command *) pg_malloc0(sizeof(Command));
                               5660                 :            482 :     my_command->type = META_COMMAND;
                               5661                 :            482 :     my_command->argc = 0;
                               5662                 :            482 :     initSimpleStats(&my_command->stats);
                               5663                 :                : 
                               5664                 :                :     /* Save first word (command name) */
                               5665                 :            482 :     j = 0;
                               5666                 :            482 :     offsets[j] = word_offset;
                               5667                 :            482 :     my_command->argv[j++] = pg_strdup(word_buf.data);
                               5668                 :            482 :     my_command->argc++;
                               5669                 :                : 
                               5670                 :                :     /* ... and convert it to enum form */
 2355                          5671                 :            482 :     my_command->meta = getMetaCommand(my_command->argv[0]);
                               5672                 :                : 
 2215 teodor@sigaev.ru         5673         [ +  + ]:            482 :     if (my_command->meta == META_SET ||
                               5674         [ +  + ]:            119 :         my_command->meta == META_IF ||
                               5675         [ +  + ]:            103 :         my_command->meta == META_ELIF)
                               5676                 :                :     {
                               5677                 :                :         yyscan_t    yyscanner;
                               5678                 :                : 
                               5679                 :                :         /* For \set, collect var name */
                               5680         [ +  + ]:            387 :         if (my_command->meta == META_SET)
                               5681                 :                :         {
                               5682         [ +  + ]:            363 :             if (!expr_lex_one_word(sstate, &word_buf, &word_offset))
 1921 alvherre@alvh.no-ip.     5683                 :              1 :                 syntax_error(source, lineno, my_command->first_line, my_command->argv[0],
                               5684                 :                :                              "missing argument", NULL, -1);
                               5685                 :                : 
 2215 teodor@sigaev.ru         5686                 :            362 :             offsets[j] = word_offset;
                               5687                 :            362 :             my_command->argv[j++] = pg_strdup(word_buf.data);
                               5688                 :            362 :             my_command->argc++;
                               5689                 :                :         }
                               5690                 :                : 
                               5691                 :                :         /* then for all parse the expression */
 2947 tgl@sss.pgh.pa.us        5692                 :            386 :         yyscanner = expr_scanner_init(sstate, source, lineno, start_offset,
                               5693                 :            386 :                                       my_command->argv[0]);
                               5694                 :                : 
                               5695         [ -  + ]:            386 :         if (expr_yyparse(yyscanner) != 0)
                               5696                 :                :         {
                               5697                 :                :             /* dead code: exit done from syntax_error called by yyerror */
 2947 tgl@sss.pgh.pa.us        5698                 :UBC           0 :             exit(1);
                               5699                 :                :         }
                               5700                 :                : 
 2947 tgl@sss.pgh.pa.us        5701                 :CBC         367 :         my_command->expr = expr_parse_result;
                               5702                 :                : 
                               5703                 :                :         /* Save line, trimming any trailing newline */
 1921 alvherre@alvh.no-ip.     5704                 :            367 :         my_command->first_line =
                               5705                 :            367 :             expr_scanner_get_substring(sstate,
                               5706                 :                :                                        start_offset,
                               5707                 :                :                                        expr_scanner_offset(sstate),
                               5708                 :                :                                        true);
                               5709                 :                : 
 2947 tgl@sss.pgh.pa.us        5710                 :            367 :         expr_scanner_finish(yyscanner);
                               5711                 :                : 
                               5712                 :            367 :         termPQExpBuffer(&word_buf);
                               5713                 :                : 
                               5714                 :            367 :         return my_command;
                               5715                 :                :     }
                               5716                 :                : 
                               5717                 :                :     /* For all other commands, collect remaining words. */
                               5718         [ +  + ]:            386 :     while (expr_lex_one_word(sstate, &word_buf, &word_offset))
                               5719                 :                :     {
                               5720                 :                :         /*
                               5721                 :                :          * my_command->argv[0] is the command itself, so the max number of
                               5722                 :                :          * arguments is one less than MAX_ARGS
                               5723                 :                :          */
                               5724         [ +  + ]:            292 :         if (j >= MAX_ARGS)
 1921 alvherre@alvh.no-ip.     5725                 :              1 :             syntax_error(source, lineno, my_command->first_line, my_command->argv[0],
                               5726                 :                :                          "too many arguments", NULL, -1);
                               5727                 :                : 
 2947 tgl@sss.pgh.pa.us        5728                 :            291 :         offsets[j] = word_offset;
                               5729                 :            291 :         my_command->argv[j++] = pg_strdup(word_buf.data);
                               5730                 :            291 :         my_command->argc++;
                               5731                 :                :     }
                               5732                 :                : 
                               5733                 :                :     /* Save line, trimming any trailing newline */
 1921 alvherre@alvh.no-ip.     5734                 :             94 :     my_command->first_line =
                               5735                 :             94 :         expr_scanner_get_substring(sstate,
                               5736                 :                :                                    start_offset,
                               5737                 :                :                                    expr_scanner_offset(sstate),
                               5738                 :                :                                    true);
                               5739                 :                : 
 2355 tgl@sss.pgh.pa.us        5740         [ +  + ]:             94 :     if (my_command->meta == META_SLEEP)
                               5741                 :                :     {
 2947                          5742         [ +  + ]:              9 :         if (my_command->argc < 2)
 1921 alvherre@alvh.no-ip.     5743                 :              1 :             syntax_error(source, lineno, my_command->first_line, my_command->argv[0],
                               5744                 :                :                          "missing argument", NULL, -1);
                               5745                 :                : 
 2947 tgl@sss.pgh.pa.us        5746         [ +  + ]:              8 :         if (my_command->argc > 3)
 1921 alvherre@alvh.no-ip.     5747                 :              1 :             syntax_error(source, lineno, my_command->first_line, my_command->argv[0],
                               5748                 :                :                          "too many arguments", NULL,
 2947 tgl@sss.pgh.pa.us        5749                 :              1 :                          offsets[3] - start_offset);
                               5750                 :                : 
                               5751                 :                :         /*
                               5752                 :                :          * Split argument into number and unit to allow "sleep 1ms" etc. We
                               5753                 :                :          * don't have to terminate the number argument with null because it
                               5754                 :                :          * will be parsed with atoi, which ignores trailing non-digit
                               5755                 :                :          * characters.
                               5756                 :                :          */
 1119 fujii@postgresql.org     5757         [ +  + ]:              7 :         if (my_command->argv[1][0] != ':')
                               5758                 :                :         {
 2947 tgl@sss.pgh.pa.us        5759                 :              4 :             char       *c = my_command->argv[1];
 1119 fujii@postgresql.org     5760                 :              4 :             bool        have_digit = false;
                               5761                 :                : 
                               5762                 :                :             /* Skip sign */
                               5763   [ +  -  -  + ]:              4 :             if (*c == '+' || *c == '-')
 1119 fujii@postgresql.org     5764                 :UBC           0 :                 c++;
                               5765                 :                : 
                               5766                 :                :             /* Require at least one digit */
 1119 fujii@postgresql.org     5767   [ +  -  +  - ]:CBC           4 :             if (*c && isdigit((unsigned char) *c))
                               5768                 :              4 :                 have_digit = true;
                               5769                 :                : 
                               5770                 :                :             /* Eat all digits */
                               5771   [ +  +  +  + ]:             10 :             while (*c && isdigit((unsigned char) *c))
 2947 tgl@sss.pgh.pa.us        5772                 :              6 :                 c++;
                               5773                 :                : 
                               5774         [ +  + ]:              4 :             if (*c)
                               5775                 :                :             {
 1119 fujii@postgresql.org     5776   [ +  -  +  - ]:              1 :                 if (my_command->argc == 2 && have_digit)
                               5777                 :                :                 {
                               5778                 :              1 :                     my_command->argv[2] = c;
                               5779                 :              1 :                     offsets[2] = offsets[1] + (c - my_command->argv[1]);
                               5780                 :              1 :                     my_command->argc = 3;
                               5781                 :                :                 }
                               5782                 :                :                 else
                               5783                 :                :                 {
                               5784                 :                :                     /*
                               5785                 :                :                      * Raise an error if argument starts with non-digit
                               5786                 :                :                      * character (after sign).
                               5787                 :                :                      */
 1119 fujii@postgresql.org     5788                 :UBC           0 :                     syntax_error(source, lineno, my_command->first_line, my_command->argv[0],
                               5789                 :                :                                  "invalid sleep time, must be an integer",
                               5790                 :              0 :                                  my_command->argv[1], offsets[1] - start_offset);
                               5791                 :                :                 }
                               5792                 :                :             }
                               5793                 :                :         }
                               5794                 :                : 
 2947 tgl@sss.pgh.pa.us        5795         [ +  + ]:CBC           7 :         if (my_command->argc == 3)
                               5796                 :                :         {
                               5797   [ +  +  +  + ]:              9 :             if (pg_strcasecmp(my_command->argv[2], "us") != 0 &&
                               5798         [ +  + ]:              6 :                 pg_strcasecmp(my_command->argv[2], "ms") != 0 &&
                               5799                 :              2 :                 pg_strcasecmp(my_command->argv[2], "s") != 0)
 1921 alvherre@alvh.no-ip.     5800                 :              1 :                 syntax_error(source, lineno, my_command->first_line, my_command->argv[0],
                               5801                 :                :                              "unrecognized time unit, must be us, ms or s",
 2947 tgl@sss.pgh.pa.us        5802                 :              1 :                              my_command->argv[2], offsets[2] - start_offset);
                               5803                 :                :         }
                               5804                 :                :     }
 2355                          5805         [ +  + ]:             85 :     else if (my_command->meta == META_SETSHELL)
                               5806                 :                :     {
 2947                          5807         [ +  + ]:              4 :         if (my_command->argc < 3)
 1921 alvherre@alvh.no-ip.     5808                 :              1 :             syntax_error(source, lineno, my_command->first_line, my_command->argv[0],
                               5809                 :                :                          "missing argument", NULL, -1);
                               5810                 :                :     }
 2355 tgl@sss.pgh.pa.us        5811         [ +  + ]:             81 :     else if (my_command->meta == META_SHELL)
                               5812                 :                :     {
 2947                          5813         [ +  + ]:              4 :         if (my_command->argc < 2)
 1921 alvherre@alvh.no-ip.     5814                 :              1 :             syntax_error(source, lineno, my_command->first_line, my_command->argv[0],
                               5815                 :                :                          "missing command", NULL, -1);
                               5816                 :                :     }
 1126                          5817   [ +  +  +  + ]:             77 :     else if (my_command->meta == META_ELSE || my_command->meta == META_ENDIF ||
                               5818         [ +  + ]:             56 :              my_command->meta == META_STARTPIPELINE ||
   81 michael@paquier.xyz      5819         [ +  + ]:GNC          45 :              my_command->meta == META_ENDPIPELINE ||
                               5820         [ +  + ]:             38 :              my_command->meta == META_SYNCPIPELINE)
                               5821                 :                :     {
 2215 teodor@sigaev.ru         5822         [ +  + ]:CBC          43 :         if (my_command->argc != 1)
 1921 alvherre@alvh.no-ip.     5823                 :              2 :             syntax_error(source, lineno, my_command->first_line, my_command->argv[0],
                               5824                 :                :                          "unexpected argument", NULL, -1);
                               5825                 :                :     }
 1472 michael@paquier.xyz      5826   [ +  +  +  + ]:             34 :     else if (my_command->meta == META_GSET || my_command->meta == META_ASET)
                               5827                 :                :     {
 1921 alvherre@alvh.no-ip.     5828         [ +  + ]:             33 :         if (my_command->argc > 2)
                               5829                 :              1 :             syntax_error(source, lineno, my_command->first_line, my_command->argv[0],
                               5830                 :                :                          "too many arguments", NULL, -1);
                               5831                 :                :     }
                               5832                 :                :     else
                               5833                 :                :     {
                               5834                 :                :         /* my_command->meta == META_NONE */
                               5835                 :              1 :         syntax_error(source, lineno, my_command->first_line, my_command->argv[0],
                               5836                 :                :                      "invalid command", NULL, -1);
                               5837                 :                :     }
                               5838                 :                : 
 2947 tgl@sss.pgh.pa.us        5839                 :             85 :     termPQExpBuffer(&word_buf);
                               5840                 :                : 
                               5841                 :             85 :     return my_command;
                               5842                 :                : }
                               5843                 :                : 
                               5844                 :                : static void
 2215 teodor@sigaev.ru         5845                 :              6 : ConditionError(const char *desc, int cmdn, const char *msg)
                               5846                 :                : {
  737 tgl@sss.pgh.pa.us        5847                 :              6 :     pg_fatal("condition error in script \"%s\" command %d: %s",
                               5848                 :                :              desc, cmdn, msg);
                               5849                 :                : }
                               5850                 :                : 
                               5851                 :                : /*
                               5852                 :                :  * Partial evaluation of conditionals before recording and running the script.
                               5853                 :                :  */
                               5854                 :                : static void
  749                          5855                 :            233 : CheckConditional(const ParsedScript *ps)
                               5856                 :                : {
                               5857                 :                :     /* statically check conditional structure */
 2215 teodor@sigaev.ru         5858                 :            233 :     ConditionalStack cs = conditional_stack_create();
                               5859                 :                :     int         i;
                               5860                 :                : 
  749 tgl@sss.pgh.pa.us        5861         [ +  + ]:           1012 :     for (i = 0; ps->commands[i] != NULL; i++)
                               5862                 :                :     {
                               5863                 :            784 :         Command    *cmd = ps->commands[i];
                               5864                 :                : 
 2215 teodor@sigaev.ru         5865         [ +  + ]:            784 :         if (cmd->type == META_COMMAND)
                               5866                 :                :         {
                               5867   [ +  +  +  +  :            413 :             switch (cmd->meta)
                                                 + ]
                               5868                 :                :             {
 2180 tgl@sss.pgh.pa.us        5869                 :             12 :                 case META_IF:
                               5870                 :             12 :                     conditional_stack_push(cs, IFSTATE_FALSE);
                               5871                 :             12 :                     break;
                               5872                 :              7 :                 case META_ELIF:
                               5873         [ +  + ]:              7 :                     if (conditional_stack_empty(cs))
  749                          5874                 :              1 :                         ConditionError(ps->desc, i + 1, "\\elif without matching \\if");
 2180                          5875         [ +  + ]:              6 :                     if (conditional_stack_peek(cs) == IFSTATE_ELSE_FALSE)
  749                          5876                 :              1 :                         ConditionError(ps->desc, i + 1, "\\elif after \\else");
 2180                          5877                 :              5 :                     break;
                               5878                 :              7 :                 case META_ELSE:
                               5879         [ +  + ]:              7 :                     if (conditional_stack_empty(cs))
  749                          5880                 :              1 :                         ConditionError(ps->desc, i + 1, "\\else without matching \\if");
 2180                          5881         [ +  + ]:              6 :                     if (conditional_stack_peek(cs) == IFSTATE_ELSE_FALSE)
  749                          5882                 :              1 :                         ConditionError(ps->desc, i + 1, "\\else after \\else");
 2180                          5883                 :              5 :                     conditional_stack_poke(cs, IFSTATE_ELSE_FALSE);
                               5884                 :              5 :                     break;
                               5885                 :             10 :                 case META_ENDIF:
                               5886         [ +  + ]:             10 :                     if (!conditional_stack_pop(cs))
  749                          5887                 :              1 :                         ConditionError(ps->desc, i + 1, "\\endif without matching \\if");
 2180                          5888                 :              9 :                     break;
                               5889                 :            377 :                 default:
                               5890                 :                :                     /* ignore anything else... */
                               5891                 :            377 :                     break;
                               5892                 :                :             }
                               5893                 :                :         }
                               5894                 :                :     }
 2215 teodor@sigaev.ru         5895         [ +  + ]:            228 :     if (!conditional_stack_empty(cs))
  749 tgl@sss.pgh.pa.us        5896                 :              1 :         ConditionError(ps->desc, i + 1, "\\if without matching \\endif");
 2215 teodor@sigaev.ru         5897                 :            227 :     conditional_stack_destroy(cs);
                               5898                 :            227 : }
                               5899                 :                : 
                               5900                 :                : /*
                               5901                 :                :  * Parse a script (either the contents of a file, or a built-in script)
                               5902                 :                :  * and add it to the list of scripts.
                               5903                 :                :  */
                               5904                 :                : static void
 2947 tgl@sss.pgh.pa.us        5905                 :            268 : ParseScript(const char *script, const char *desc, int weight)
                               5906                 :                : {
                               5907                 :                :     ParsedScript ps;
                               5908                 :                :     PsqlScanState sstate;
                               5909                 :                :     PQExpBufferData line_buf;
                               5910                 :                :     int         alloc_num;
                               5911                 :                :     int         index;
                               5912                 :                :     int         lineno;
                               5913                 :                :     int         start_offset;
                               5914                 :                : 
                               5915                 :                : #define COMMANDS_ALLOC_NUM 128
                               5916                 :            268 :     alloc_num = COMMANDS_ALLOC_NUM;
                               5917                 :                : 
                               5918                 :                :     /* Initialize all fields of ps */
                               5919                 :            268 :     ps.desc = desc;
                               5920                 :            268 :     ps.weight = weight;
                               5921                 :            268 :     ps.commands = (Command **) pg_malloc(sizeof(Command *) * alloc_num);
 2659                          5922                 :            268 :     initStats(&ps.stats, 0);
                               5923                 :                : 
                               5924                 :                :     /* Prepare to parse script */
 2947                          5925                 :            268 :     sstate = psql_scan_create(&pgbench_callbacks);
                               5926                 :                : 
                               5927                 :                :     /*
                               5928                 :                :      * Ideally, we'd scan scripts using the encoding and stdstrings settings
                               5929                 :                :      * we get from a DB connection.  However, without major rearrangement of
                               5930                 :                :      * pgbench's argument parsing, we can't have a DB connection at the time
                               5931                 :                :      * we parse scripts.  Using SQL_ASCII (encoding 0) should work well enough
                               5932                 :                :      * with any backend-safe encoding, though conceivably we could be fooled
                               5933                 :                :      * if a script file uses a client-only encoding.  We also assume that
                               5934                 :                :      * stdstrings should be true, which is a bit riskier.
                               5935                 :                :      */
                               5936                 :            268 :     psql_scan_setup(sstate, script, strlen(script), 0, true);
 1921 alvherre@alvh.no-ip.     5937                 :            268 :     start_offset = expr_scanner_offset(sstate) - 1;
                               5938                 :                : 
 2947 tgl@sss.pgh.pa.us        5939                 :            268 :     initPQExpBuffer(&line_buf);
                               5940                 :                : 
                               5941                 :            268 :     index = 0;
                               5942                 :                : 
                               5943                 :                :     for (;;)
                               5944                 :            791 :     {
                               5945                 :                :         PsqlScanResult sr;
                               5946                 :                :         promptStatus_t prompt;
 1921 alvherre@alvh.no-ip.     5947                 :           1059 :         Command    *command = NULL;
                               5948                 :                : 
 2947 tgl@sss.pgh.pa.us        5949                 :           1059 :         resetPQExpBuffer(&line_buf);
 1921 alvherre@alvh.no-ip.     5950                 :           1059 :         lineno = expr_scanner_get_lineno(sstate, start_offset);
                               5951                 :                : 
 2947 tgl@sss.pgh.pa.us        5952                 :           1059 :         sr = psql_scan(sstate, &line_buf, &prompt);
                               5953                 :                : 
                               5954                 :                :         /* If we collected a new SQL command, process that */
 1847 alvherre@alvh.no-ip.     5955                 :           1059 :         command = create_sql_command(&line_buf, desc);
                               5956                 :                : 
                               5957                 :                :         /* store new command */
                               5958         [ +  + ]:           1059 :         if (command)
                               5959                 :            374 :             ps.commands[index++] = command;
                               5960                 :                : 
                               5961                 :                :         /* If we reached a backslash, process that */
 2947 tgl@sss.pgh.pa.us        5962         [ +  + ]:           1059 :         if (sr == PSCAN_BACKSLASH)
                               5963                 :                :         {
                               5964                 :            482 :             command = process_backslash_command(sstate, desc);
                               5965                 :                : 
                               5966         [ +  - ]:            452 :             if (command)
                               5967                 :                :             {
                               5968                 :                :                 /*
                               5969                 :                :                  * If this is gset or aset, merge into the preceding command.
                               5970                 :                :                  * (We don't use a command slot in this case).
                               5971                 :                :                  */
 1472 michael@paquier.xyz      5972   [ +  +  +  + ]:            452 :                 if (command->meta == META_GSET || command->meta == META_ASET)
 2947 tgl@sss.pgh.pa.us        5973                 :             29 :                 {
                               5974                 :                :                     Command    *cmd;
                               5975                 :                : 
 1921 alvherre@alvh.no-ip.     5976         [ +  + ]:             32 :                     if (index == 0)
                               5977                 :              1 :                         syntax_error(desc, lineno, NULL, NULL,
                               5978                 :                :                                      "\\gset must follow an SQL command",
                               5979                 :                :                                      NULL, -1);
                               5980                 :                : 
                               5981                 :             31 :                     cmd = ps.commands[index - 1];
                               5982                 :                : 
 1847                          5983         [ +  + ]:             31 :                     if (cmd->type != SQL_COMMAND ||
                               5984         [ +  + ]:             30 :                         cmd->varprefix != NULL)
 1921                          5985                 :              2 :                         syntax_error(desc, lineno, NULL, NULL,
                               5986                 :                :                                      "\\gset must follow an SQL command",
                               5987                 :              2 :                                      cmd->first_line, -1);
                               5988                 :                : 
                               5989                 :                :                     /* get variable prefix */
                               5990   [ +  +  -  + ]:             29 :                     if (command->argc <= 1 || command->argv[1][0] == '\0')
 1847                          5991                 :             27 :                         cmd->varprefix = pg_strdup("");
                               5992                 :                :                     else
                               5993                 :              2 :                         cmd->varprefix = pg_strdup(command->argv[1]);
                               5994                 :                : 
                               5995                 :                :                     /* update the sql command meta */
 1472 michael@paquier.xyz      5996                 :             29 :                     cmd->meta = command->meta;
                               5997                 :                : 
                               5998                 :                :                     /* cleanup unused command */
 1921 alvherre@alvh.no-ip.     5999                 :             29 :                     free_command(command);
                               6000                 :                : 
                               6001                 :             29 :                     continue;
                               6002                 :                :                 }
                               6003                 :                : 
                               6004                 :                :                 /* Attach any other backslash command as a new command */
                               6005                 :            420 :                 ps.commands[index++] = command;
                               6006                 :                :             }
                               6007                 :                :         }
                               6008                 :                : 
                               6009                 :                :         /*
                               6010                 :                :          * Since we used a command slot, allocate more if needed.  Note we
                               6011                 :                :          * always allocate one more in order to accommodate the NULL
                               6012                 :                :          * terminator below.
                               6013                 :                :          */
                               6014         [ -  + ]:            997 :         if (index >= alloc_num)
                               6015                 :                :         {
 1921 alvherre@alvh.no-ip.     6016                 :UBC           0 :             alloc_num += COMMANDS_ALLOC_NUM;
                               6017                 :              0 :             ps.commands = (Command **)
                               6018                 :              0 :                 pg_realloc(ps.commands, sizeof(Command *) * alloc_num);
                               6019                 :                :         }
                               6020                 :                : 
                               6021                 :                :         /* Done if we reached EOF */
 2947 tgl@sss.pgh.pa.us        6022   [ +  +  +  + ]:CBC         997 :         if (sr == PSCAN_INCOMPLETE || sr == PSCAN_EOL)
                               6023                 :                :             break;
                               6024                 :                :     }
                               6025                 :                : 
                               6026                 :            235 :     ps.commands[index] = NULL;
                               6027                 :                : 
  749                          6028                 :            235 :     addScript(&ps);
                               6029                 :                : 
 2947                          6030                 :            227 :     termPQExpBuffer(&line_buf);
                               6031                 :            227 :     psql_scan_finish(sstate);
                               6032                 :            227 :     psql_scan_destroy(sstate);
 6767 ishii@postgresql.org     6033                 :            227 : }
                               6034                 :                : 
                               6035                 :                : /*
                               6036                 :                :  * Read the entire contents of file fd, and return it in a malloc'd buffer.
                               6037                 :                :  *
                               6038                 :                :  * The buffer will typically be larger than necessary, but we don't care
                               6039                 :                :  * in this program, because we'll free it as soon as we've parsed the script.
                               6040                 :                :  */
                               6041                 :                : static char *
 2947 tgl@sss.pgh.pa.us        6042                 :            115 : read_file_contents(FILE *fd)
                               6043                 :                : {
                               6044                 :                :     char       *buf;
 3803                          6045                 :            115 :     size_t      buflen = BUFSIZ;
                               6046                 :            115 :     size_t      used = 0;
                               6047                 :                : 
 2947                          6048                 :            115 :     buf = (char *) pg_malloc(buflen);
                               6049                 :                : 
                               6050                 :                :     for (;;)
 3803 tgl@sss.pgh.pa.us        6051                 :UBC           0 :     {
                               6052                 :                :         size_t      nread;
                               6053                 :                : 
 2947 tgl@sss.pgh.pa.us        6054                 :CBC         115 :         nread = fread(buf + used, 1, BUFSIZ, fd);
                               6055                 :            115 :         used += nread;
                               6056                 :                :         /* If fread() read less than requested, must be EOF or error */
                               6057         [ +  - ]:            115 :         if (nread < BUFSIZ)
 3803                          6058                 :            115 :             break;
                               6059                 :                :         /* Enlarge buf so we can read some more */
 3803 tgl@sss.pgh.pa.us        6060                 :UBC           0 :         buflen += BUFSIZ;
                               6061                 :              0 :         buf = (char *) pg_realloc(buf, buflen);
                               6062                 :                :     }
                               6063                 :                :     /* There is surely room for a terminator */
 2947 tgl@sss.pgh.pa.us        6064                 :CBC         115 :     buf[used] = '\0';
                               6065                 :                : 
                               6066                 :            115 :     return buf;
                               6067                 :                : }
                               6068                 :                : 
                               6069                 :                : /*
                               6070                 :                :  * Given a file name, read it and add its script to the list.
                               6071                 :                :  * "-" means to read stdin.
                               6072                 :                :  * NB: filename must be storage that won't disappear.
                               6073                 :                :  */
                               6074                 :                : static void
                               6075                 :            116 : process_file(const char *filename, int weight)
                               6076                 :                : {
                               6077                 :                :     FILE       *fd;
                               6078                 :                :     char       *buf;
                               6079                 :                : 
                               6080                 :                :     /* Slurp the file contents into "buf" */
 6767 ishii@postgresql.org     6081         [ -  + ]:            116 :     if (strcmp(filename, "-") == 0)
 6767 ishii@postgresql.org     6082                 :UBC           0 :         fd = stdin;
 6767 ishii@postgresql.org     6083         [ +  + ]:CBC         116 :     else if ((fd = fopen(filename, "r")) == NULL)
  737 tgl@sss.pgh.pa.us        6084                 :              1 :         pg_fatal("could not open file \"%s\": %m", filename);
                               6085                 :                : 
 2947                          6086                 :            115 :     buf = read_file_contents(fd);
                               6087                 :                : 
                               6088         [ -  + ]:            115 :     if (ferror(fd))
  737 tgl@sss.pgh.pa.us        6089                 :UBC           0 :         pg_fatal("could not read file \"%s\": %m", filename);
                               6090                 :                : 
 2947 tgl@sss.pgh.pa.us        6091         [ +  - ]:CBC         115 :     if (fd != stdin)
                               6092                 :            115 :         fclose(fd);
                               6093                 :                : 
                               6094                 :            115 :     ParseScript(buf, filename, weight);
                               6095                 :                : 
                               6096                 :             75 :     free(buf);
 6767 ishii@postgresql.org     6097                 :             75 : }
                               6098                 :                : 
                               6099                 :                : /* Parse the given builtin script and add it to the list. */
                               6100                 :                : static void
 2947 tgl@sss.pgh.pa.us        6101                 :            153 : process_builtin(const BuiltinScript *bi, int weight)
                               6102                 :                : {
                               6103                 :            153 :     ParseScript(bi->script, bi->desc, weight);
 6772 ishii@postgresql.org     6104                 :            152 : }
                               6105                 :                : 
                               6106                 :                : /* show available builtin scripts */
                               6107                 :                : static void
 3000 alvherre@alvh.no-ip.     6108                 :              3 : listAvailableScripts(void)
                               6109                 :                : {
                               6110                 :                :     int         i;
                               6111                 :                : 
                               6112                 :              3 :     fprintf(stderr, "Available builtin scripts:\n");
 2948                          6113         [ +  + ]:             12 :     for (i = 0; i < lengthof(builtin_script); i++)
 1734 tmunro@postgresql.or     6114                 :              9 :         fprintf(stderr, "  %13s: %s\n", builtin_script[i].name, builtin_script[i].desc);
 3000 alvherre@alvh.no-ip.     6115                 :              3 :     fprintf(stderr, "\n");
                               6116                 :              3 : }
                               6117                 :                : 
                               6118                 :                : /* return builtin script "name" if unambiguous, fails if not found */
                               6119                 :                : static const BuiltinScript *
 2948                          6120                 :            156 : findBuiltin(const char *name)
                               6121                 :                : {
                               6122                 :                :     int         i,
 2964                          6123                 :            156 :                 found = 0,
                               6124                 :            156 :                 len = strlen(name);
 2947 tgl@sss.pgh.pa.us        6125                 :            156 :     const BuiltinScript *result = NULL;
                               6126                 :                : 
 2948 alvherre@alvh.no-ip.     6127         [ +  + ]:            624 :     for (i = 0; i < lengthof(builtin_script); i++)
                               6128                 :                :     {
 2964                          6129         [ +  + ]:            468 :         if (strncmp(builtin_script[i].name, name, len) == 0)
                               6130                 :                :         {
 2948                          6131                 :            156 :             result = &builtin_script[i];
 2964                          6132                 :            156 :             found++;
                               6133                 :                :         }
                               6134                 :                :     }
                               6135                 :                : 
                               6136                 :                :     /* ok, unambiguous result */
                               6137         [ +  + ]:            156 :     if (found == 1)
 2948                          6138                 :            154 :         return result;
                               6139                 :                : 
                               6140                 :                :     /* error cases */
 2964                          6141         [ +  + ]:              2 :     if (found == 0)
  737 tgl@sss.pgh.pa.us        6142                 :              1 :         pg_log_error("no builtin script found for name \"%s\"", name);
                               6143                 :                :     else                        /* found > 1 */
                               6144                 :              1 :         pg_log_error("ambiguous builtin name: %d builtin scripts found for prefix \"%s\"", found, name);
                               6145                 :                : 
 3000 alvherre@alvh.no-ip.     6146                 :              2 :     listAvailableScripts();
                               6147                 :              2 :     exit(1);
                               6148                 :                : }
                               6149                 :                : 
                               6150                 :                : /*
                               6151                 :                :  * Determine the weight specification from a script option (-b, -f), if any,
                               6152                 :                :  * and return it as an integer (1 is returned if there's no weight).  The
                               6153                 :                :  * script name is returned in *script as a malloc'd string.
                               6154                 :                :  */
                               6155                 :                : static int
 2948                          6156                 :            127 : parseScriptWeight(const char *option, char **script)
                               6157                 :                : {
                               6158                 :                :     char       *sep;
                               6159                 :                :     int         weight;
                               6160                 :                : 
                               6161         [ +  + ]:            127 :     if ((sep = strrchr(option, WSEP)))
                               6162                 :                :     {
                               6163                 :              7 :         int         namelen = sep - option;
                               6164                 :                :         long        wtmp;
                               6165                 :                :         char       *badp;
                               6166                 :                : 
                               6167                 :                :         /* generate the script name */
                               6168                 :              7 :         *script = pg_malloc(namelen + 1);
                               6169                 :              7 :         strncpy(*script, option, namelen);
                               6170                 :              7 :         (*script)[namelen] = '\0';
                               6171                 :                : 
                               6172                 :                :         /* process digits of the weight spec */
                               6173                 :              7 :         errno = 0;
                               6174                 :              7 :         wtmp = strtol(sep + 1, &badp, 10);
                               6175   [ +  -  +  +  :              7 :         if (errno != 0 || badp == sep + 1 || *badp != '\0')
                                              -  + ]
  737 tgl@sss.pgh.pa.us        6176                 :              1 :             pg_fatal("invalid weight specification: %s", sep);
 2938 alvherre@alvh.no-ip.     6177   [ +  -  +  + ]:              6 :         if (wtmp > INT_MAX || wtmp < 0)
  737 tgl@sss.pgh.pa.us        6178                 :              1 :             pg_fatal("weight specification out of range (0 .. %d): %lld",
                               6179                 :                :                      INT_MAX, (long long) wtmp);
 2948 alvherre@alvh.no-ip.     6180                 :              5 :         weight = wtmp;
                               6181                 :                :     }
                               6182                 :                :     else
                               6183                 :                :     {
                               6184                 :            120 :         *script = pg_strdup(option);
                               6185                 :            120 :         weight = 1;
                               6186                 :                :     }
                               6187                 :                : 
                               6188                 :            125 :     return weight;
                               6189                 :                : }
                               6190                 :                : 
                               6191                 :                : /* append a script to the list of scripts to process */
                               6192                 :                : static void
  749 tgl@sss.pgh.pa.us        6193                 :            235 : addScript(const ParsedScript *script)
                               6194                 :                : {
                               6195   [ +  -  +  + ]:            235 :     if (script->commands == NULL || script->commands[0] == NULL)
  737                          6196                 :              1 :         pg_fatal("empty command list for script \"%s\"", script->desc);
                               6197                 :                : 
 3000 alvherre@alvh.no-ip.     6198         [ +  + ]:            234 :     if (num_scripts >= MAX_SCRIPTS)
  737 tgl@sss.pgh.pa.us        6199                 :              1 :         pg_fatal("at most %d SQL scripts are allowed", MAX_SCRIPTS);
                               6200                 :                : 
 2215 teodor@sigaev.ru         6201                 :            233 :     CheckConditional(script);
                               6202                 :                : 
  749 tgl@sss.pgh.pa.us        6203                 :            227 :     sql_script[num_scripts] = *script;
 3000 alvherre@alvh.no-ip.     6204                 :            227 :     num_scripts++;
                               6205                 :            227 : }
                               6206                 :                : 
                               6207                 :                : /*
                               6208                 :                :  * Print progress report.
                               6209                 :                :  *
                               6210                 :                :  * On entry, *last and *last_report contain the statistics and time of last
                               6211                 :                :  * progress report.  On exit, they are updated with the new stats.
                               6212                 :                :  */
                               6213                 :                : static void
 1131 tmunro@postgresql.or     6214                 :UBC           0 : printProgressReport(TState *threads, int64 test_start, pg_time_usec_t now,
                               6215                 :                :                     StatsData *last, int64 *last_report)
                               6216                 :                : {
                               6217                 :                :     /* generate and show report */
                               6218                 :              0 :     pg_time_usec_t run = now - *last_report;
                               6219                 :                :     int64       cnt,
                               6220                 :                :                 failures,
                               6221                 :                :                 retried;
                               6222                 :                :     double      tps,
                               6223                 :                :                 total_run,
                               6224                 :                :                 latency,
                               6225                 :                :                 sqlat,
                               6226                 :                :                 lag,
                               6227                 :                :                 stdev;
                               6228                 :                :     char        tbuf[315];
                               6229                 :                :     StatsData   cur;
                               6230                 :                : 
                               6231                 :                :     /*
                               6232                 :                :      * Add up the statistics of all threads.
                               6233                 :                :      *
                               6234                 :                :      * XXX: No locking.  There is no guarantee that we get an atomic snapshot
                               6235                 :                :      * of the transaction count and latencies, so these figures can well be
                               6236                 :                :      * off by a small amount.  The progress report's purpose is to give a
                               6237                 :                :      * quick overview of how the test is going, so that shouldn't matter too
                               6238                 :                :      * much.  (If a read from a 64-bit integer is not atomic, you might get a
                               6239                 :                :      * "torn" read and completely bogus latencies though!)
                               6240                 :                :      */
 1847 heikki.linnakangas@i     6241                 :              0 :     initStats(&cur, 0);
                               6242         [ #  # ]:              0 :     for (int i = 0; i < nthreads; i++)
                               6243                 :                :     {
 1838 tgl@sss.pgh.pa.us        6244                 :              0 :         mergeSimpleStats(&cur.latency, &threads[i].stats.latency);
                               6245                 :              0 :         mergeSimpleStats(&cur.lag, &threads[i].stats.lag);
                               6246                 :              0 :         cur.cnt += threads[i].stats.cnt;
                               6247                 :              0 :         cur.skipped += threads[i].stats.skipped;
  753 ishii@postgresql.org     6248                 :              0 :         cur.retries += threads[i].stats.retries;
                               6249                 :              0 :         cur.retried += threads[i].stats.retried;
                               6250                 :              0 :         cur.serialization_failures +=
                               6251                 :              0 :             threads[i].stats.serialization_failures;
                               6252                 :              0 :         cur.deadlock_failures += threads[i].stats.deadlock_failures;
                               6253                 :                :     }
                               6254                 :                : 
                               6255                 :                :     /* we count only actually executed transactions */
                               6256                 :              0 :     cnt = cur.cnt - last->cnt;
 1847 heikki.linnakangas@i     6257                 :              0 :     total_run = (now - test_start) / 1000000.0;
  753 ishii@postgresql.org     6258                 :              0 :     tps = 1000000.0 * cnt / run;
                               6259         [ #  # ]:              0 :     if (cnt > 0)
                               6260                 :                :     {
                               6261                 :              0 :         latency = 0.001 * (cur.latency.sum - last->latency.sum) / cnt;
                               6262                 :              0 :         sqlat = 1.0 * (cur.latency.sum2 - last->latency.sum2) / cnt;
 1847 heikki.linnakangas@i     6263                 :              0 :         stdev = 0.001 * sqrt(sqlat - 1000000.0 * latency * latency);
  753 ishii@postgresql.org     6264                 :              0 :         lag = 0.001 * (cur.lag.sum - last->lag.sum) / cnt;
                               6265                 :                :     }
                               6266                 :                :     else
                               6267                 :                :     {
 1847 heikki.linnakangas@i     6268                 :              0 :         latency = sqlat = stdev = lag = 0;
                               6269                 :                :     }
  753 ishii@postgresql.org     6270                 :              0 :     failures = getFailures(&cur) - getFailures(last);
                               6271                 :              0 :     retried = cur.retried - last->retried;
                               6272                 :                : 
 1847 heikki.linnakangas@i     6273         [ #  # ]:              0 :     if (progress_timestamp)
                               6274                 :                :     {
 1008 tmunro@postgresql.or     6275                 :              0 :         snprintf(tbuf, sizeof(tbuf), "%.3f s",
                               6276                 :              0 :                  PG_TIME_GET_DOUBLE(now + epoch_shift));
                               6277                 :                :     }
                               6278                 :                :     else
                               6279                 :                :     {
                               6280                 :                :         /* round seconds are expected, but the thread may be late */
 1847 heikki.linnakangas@i     6281                 :              0 :         snprintf(tbuf, sizeof(tbuf), "%.1f s", total_run);
                               6282                 :                :     }
                               6283                 :                : 
                               6284                 :              0 :     fprintf(stderr,
                               6285                 :                :             "progress: %s, %.1f tps, lat %.3f ms stddev %.3f, " INT64_FORMAT " failed",
                               6286                 :                :             tbuf, tps, latency, stdev, failures);
                               6287                 :                : 
                               6288         [ #  # ]:              0 :     if (throttle_delay)
                               6289                 :                :     {
                               6290                 :              0 :         fprintf(stderr, ", lag %.3f ms", lag);
                               6291         [ #  # ]:              0 :         if (latency_limit)
                               6292                 :              0 :             fprintf(stderr, ", " INT64_FORMAT " skipped",
                               6293                 :              0 :                     cur.skipped - last->skipped);
                               6294                 :                :     }
                               6295                 :                : 
                               6296                 :                :     /* it can be non-zero only if max_tries is not equal to one */
  753 ishii@postgresql.org     6297         [ #  # ]:              0 :     if (max_tries != 1)
                               6298                 :              0 :         fprintf(stderr,
                               6299                 :                :                 ", " INT64_FORMAT " retried, " INT64_FORMAT " retries",
                               6300                 :              0 :                 retried, cur.retries - last->retries);
 1847 heikki.linnakangas@i     6301                 :              0 :     fprintf(stderr, "\n");
                               6302                 :                : 
                               6303                 :              0 :     *last = cur;
                               6304                 :              0 :     *last_report = now;
                               6305                 :              0 : }
                               6306                 :                : 
                               6307                 :                : static void
 2357 peter_e@gmx.net          6308                 :CBC          11 : printSimpleStats(const char *prefix, SimpleStats *ss)
                               6309                 :                : {
 2336 tgl@sss.pgh.pa.us        6310         [ +  - ]:             11 :     if (ss->count > 0)
                               6311                 :                :     {
                               6312                 :             11 :         double      latency = ss->sum / ss->count;
                               6313                 :             11 :         double      stddev = sqrt(ss->sum2 / ss->count - latency * latency);
                               6314                 :                : 
                               6315                 :             11 :         printf("%s average = %.3f ms\n", prefix, 0.001 * latency);
                               6316                 :             11 :         printf("%s stddev = %.3f ms\n", prefix, 0.001 * stddev);
                               6317                 :                :     }
 2998 alvherre@alvh.no-ip.     6318                 :             11 : }
                               6319                 :                : 
                               6320                 :                : /* print version banner */
                               6321                 :                : static void
 1031 tgl@sss.pgh.pa.us        6322                 :             75 : printVersion(PGconn *con)
                               6323                 :                : {
                               6324                 :             75 :     int         server_ver = PQserverVersion(con);
                               6325                 :             75 :     int         client_ver = PG_VERSION_NUM;
                               6326                 :                : 
                               6327         [ -  + ]:             75 :     if (server_ver != client_ver)
                               6328                 :                :     {
                               6329                 :                :         const char *server_version;
                               6330                 :                :         char        sverbuf[32];
                               6331                 :                : 
                               6332                 :                :         /* Try to get full text form, might include "devel" etc */
 1031 tgl@sss.pgh.pa.us        6333                 :UBC           0 :         server_version = PQparameterStatus(con, "server_version");
                               6334                 :                :         /* Otherwise fall back on server_ver */
                               6335         [ #  # ]:              0 :         if (!server_version)
                               6336                 :                :         {
                               6337                 :              0 :             formatPGVersionNumber(server_ver, true,
                               6338                 :                :                                   sverbuf, sizeof(sverbuf));
                               6339                 :              0 :             server_version = sverbuf;
                               6340                 :                :         }
                               6341                 :                : 
                               6342                 :              0 :         printf(_("%s (%s, server %s)\n"),
                               6343                 :                :                "pgbench", PG_VERSION, server_version);
                               6344                 :                :     }
                               6345                 :                :     /* For version match, only print pgbench version */
                               6346                 :                :     else
 1031 tgl@sss.pgh.pa.us        6347                 :CBC          75 :         printf("%s (%s)\n", "pgbench", PG_VERSION);
                               6348                 :             75 :     fflush(stdout);
                               6349                 :             75 : }
                               6350                 :                : 
                               6351                 :                : /* print out results */
                               6352                 :                : static void
 1131 tmunro@postgresql.or     6353                 :             73 : printResults(StatsData *total,
                               6354                 :                :              pg_time_usec_t total_duration, /* benchmarking time */
                               6355                 :                :              pg_time_usec_t conn_total_duration,    /* is_connect */
                               6356                 :                :              pg_time_usec_t conn_elapsed_duration,  /* !is_connect */
                               6357                 :                :              int64 latency_late)
                               6358                 :                : {
                               6359                 :                :     /* tps is about actually executed transactions during benchmarking */
  753 ishii@postgresql.org     6360                 :             73 :     int64       failures = getFailures(total);
                               6361                 :             73 :     int64       total_cnt = total->cnt + total->skipped + failures;
 1131 tmunro@postgresql.or     6362                 :             73 :     double      bench_duration = PG_TIME_GET_DOUBLE(total_duration);
  753 ishii@postgresql.org     6363                 :             73 :     double      tps = total->cnt / bench_duration;
                               6364                 :                : 
                               6365                 :                :     /* Report test parameters. */
 3000 alvherre@alvh.no-ip.     6366         [ +  + ]:             73 :     printf("transaction type: %s\n",
                               6367                 :                :            num_scripts == 1 ? sql_script[0].desc : "multiple scripts");
 6423 ishii@postgresql.org     6368                 :             73 :     printf("scaling factor: %d\n", scale);
                               6369                 :                :     /* only print partitioning information if some partitioning was detected */
 1657 akapila@postgresql.o     6370         [ +  + ]:             73 :     if (partition_method != PART_NONE)
                               6371                 :              6 :         printf("partition method: %s\npartitions: %d\n",
                               6372                 :                :                PARTITION_METHOD[partition_method], partitions);
 5870 ishii@postgresql.org     6373                 :             73 :     printf("query mode: %s\n", QUERYMODE[querymode]);
 8768 bruce@momjian.us         6374                 :             73 :     printf("number of clients: %d\n", nclients);
 5368 ishii@postgresql.org     6375                 :             73 :     printf("number of threads: %d\n", nthreads);
                               6376                 :                : 
  753                          6377         [ +  - ]:             73 :     if (max_tries)
  725 peter@eisentraut.org     6378                 :             73 :         printf("maximum number of tries: %u\n", max_tries);
                               6379                 :                : 
 5694 tgl@sss.pgh.pa.us        6380         [ +  - ]:             73 :     if (duration <= 0)
                               6381                 :                :     {
                               6382                 :             73 :         printf("number of transactions per client: %d\n", nxacts);
 2998 alvherre@alvh.no-ip.     6383                 :             73 :         printf("number of transactions actually processed: " INT64_FORMAT "/%d\n",
                               6384                 :                :                total->cnt, nxacts * nclients);
                               6385                 :                :     }
                               6386                 :                :     else
                               6387                 :                :     {
 5694 tgl@sss.pgh.pa.us        6388                 :UBC           0 :         printf("duration: %d s\n", duration);
 3612                          6389                 :              0 :         printf("number of transactions actually processed: " INT64_FORMAT "\n",
                               6390                 :                :                total->cnt);
                               6391                 :                :     }
                               6392                 :                : 
  753 ishii@postgresql.org     6393                 :CBC          73 :     printf("number of failed transactions: " INT64_FORMAT " (%.3f%%)\n",
                               6394                 :                :            failures, 100.0 * failures / total_cnt);
                               6395                 :                : 
                               6396         [ -  + ]:             73 :     if (failures_detailed)
                               6397                 :                :     {
  753 ishii@postgresql.org     6398                 :UBC           0 :         printf("number of serialization failures: " INT64_FORMAT " (%.3f%%)\n",
                               6399                 :                :                total->serialization_failures,
                               6400                 :                :                100.0 * total->serialization_failures / total_cnt);
                               6401                 :              0 :         printf("number of deadlock failures: " INT64_FORMAT " (%.3f%%)\n",
                               6402                 :                :                total->deadlock_failures,
                               6403                 :                :                100.0 * total->deadlock_failures / total_cnt);
                               6404                 :                :     }
                               6405                 :                : 
                               6406                 :                :     /* it can be non-zero only if max_tries is not equal to one */
  753 ishii@postgresql.org     6407         [ +  + ]:CBC          73 :     if (max_tries != 1)
                               6408                 :                :     {
                               6409                 :              2 :         printf("number of transactions retried: " INT64_FORMAT " (%.3f%%)\n",
                               6410                 :                :                total->retried, 100.0 * total->retried / total_cnt);
                               6411                 :              2 :         printf("total number of retries: " INT64_FORMAT "\n", total->retries);
                               6412                 :                :     }
                               6413                 :                : 
                               6414                 :                :     /* Remaining stats are nonsensical if we failed to execute any xacts */
                               6415         [ +  + ]:             73 :     if (total->cnt + total->skipped <= 0)
 3407 tgl@sss.pgh.pa.us        6416                 :             46 :         return;
                               6417                 :                : 
 3471 heikki.linnakangas@i     6418   [ +  +  +  - ]:             27 :     if (throttle_delay && latency_limit)
  774 ishii@postgresql.org     6419                 :              2 :         printf("number of transactions skipped: " INT64_FORMAT " (%.3f%%)\n",
                               6420                 :                :                total->skipped, 100.0 * total->skipped / total_cnt);
                               6421                 :                : 
 3471 heikki.linnakangas@i     6422         [ +  + ]:             27 :     if (latency_limit)
  774 ishii@postgresql.org     6423         [ +  - ]:              2 :         printf("number of transactions above the %.1f ms latency limit: " INT64_FORMAT "/" INT64_FORMAT " (%.3f%%)\n",
                               6424                 :                :                latency_limit / 1000.0, latency_late, total->cnt,
                               6425                 :                :                (total->cnt > 0) ? 100.0 * latency_late / total->cnt : 0.0);
                               6426                 :                : 
 3471 heikki.linnakangas@i     6427   [ +  +  +  -  :             27 :     if (throttle_delay || progress || latency_limit)
                                              -  + ]
 2998 alvherre@alvh.no-ip.     6428                 :              2 :         printSimpleStats("latency", &total->latency);
                               6429                 :                :     else
                               6430                 :                :     {
                               6431                 :                :         /* no measurement, show average latency computed from run time */
  753 ishii@postgresql.org     6432         [ -  + ]:             25 :         printf("latency average = %.3f ms%s\n",
                               6433                 :                :                0.001 * total_duration * nclients / total_cnt,
                               6434                 :                :                failures > 0 ? " (including failures)" : "");
                               6435                 :                :     }
                               6436                 :                : 
 3918                          6437         [ +  + ]:             27 :     if (throttle_delay)
                               6438                 :                :     {
                               6439                 :                :         /*
                               6440                 :                :          * Report average transaction lag under rate limit throttling.  This
                               6441                 :                :          * is the delay between scheduled and actual start times for the
                               6442                 :                :          * transaction.  The measured lag may be caused by thread/client load,
                               6443                 :                :          * the database load, or the Poisson throttling process.
                               6444                 :                :          */
 3844 noah@leadboat.com        6445                 :              2 :         printf("rate limit schedule lag: avg %.3f (max %.3f) ms\n",
                               6446                 :                :                0.001 * total->lag.sum / total->cnt, 0.001 * total->lag.max);
                               6447                 :                :     }
                               6448                 :                : 
                               6449                 :                :     /*
                               6450                 :                :      * Under -C/--connect, each transaction incurs a significant connection
                               6451                 :                :      * cost, it would not make much sense to ignore it in tps, and it would
                               6452                 :                :      * not be tps anyway.
                               6453                 :                :      *
                               6454                 :                :      * Otherwise connections are made just once at the beginning of the run
                               6455                 :                :      * and should not impact performance but for very short run, so they are
                               6456                 :                :      * (right)fully ignored in tps.
                               6457                 :                :      */
 1131 tmunro@postgresql.or     6458         [ +  + ]:             27 :     if (is_connect)
                               6459                 :                :     {
  753 ishii@postgresql.org     6460                 :              2 :         printf("average connection time = %.3f ms\n", 0.001 * conn_total_duration / (total->cnt + failures));
 1131 tmunro@postgresql.or     6461                 :              2 :         printf("tps = %f (including reconnection times)\n", tps);
                               6462                 :                :     }
                               6463                 :                :     else
                               6464                 :                :     {
                               6465                 :             25 :         printf("initial connection time = %.3f ms\n", 0.001 * conn_elapsed_duration);
                               6466                 :             25 :         printf("tps = %f (without initial connection time)\n", tps);
                               6467                 :                :     }
                               6468                 :                : 
                               6469                 :                :     /* Report per-script/command statistics */
 1971 alvherre@alvh.no-ip.     6470   [ +  +  +  + ]:             27 :     if (per_script_stats || report_per_command)
                               6471                 :                :     {
                               6472                 :                :         int         i;
                               6473                 :                : 
 3000                          6474         [ +  + ]:             16 :         for (i = 0; i < num_scripts; i++)
                               6475                 :                :         {
 2336 tgl@sss.pgh.pa.us        6476         [ +  + ]:             11 :             if (per_script_stats)
                               6477                 :                :             {
                               6478                 :              9 :                 StatsData  *sstats = &sql_script[i].stats;
  753 ishii@postgresql.org     6479                 :              9 :                 int64       script_failures = getFailures(sstats);
                               6480                 :              9 :                 int64       script_total_cnt =
  331 tgl@sss.pgh.pa.us        6481                 :              9 :                     sstats->cnt + sstats->skipped + script_failures;
                               6482                 :                : 
 2948 alvherre@alvh.no-ip.     6483                 :              9 :                 printf("SQL script %d: %s\n"
                               6484                 :                :                        " - weight: %d (targets %.1f%% of total)\n"
                               6485                 :                :                        " - " INT64_FORMAT " transactions (%.1f%% of total, tps = %f)\n",
                               6486                 :                :                        i + 1, sql_script[i].desc,
                               6487                 :                :                        sql_script[i].weight,
                               6488                 :                :                        100.0 * sql_script[i].weight / total_weight,
                               6489                 :                :                        sstats->cnt,
                               6490                 :                :                        100.0 * sstats->cnt / total->cnt,
                               6491                 :                :                        sstats->cnt / bench_duration);
                               6492                 :                : 
  753 ishii@postgresql.org     6493                 :              9 :                 printf(" - number of failed transactions: " INT64_FORMAT " (%.3f%%)\n",
                               6494                 :                :                        script_failures,
                               6495                 :                :                        100.0 * script_failures / script_total_cnt);
                               6496                 :                : 
                               6497         [ -  + ]:              9 :                 if (failures_detailed)
                               6498                 :                :                 {
  753 ishii@postgresql.org     6499                 :UBC           0 :                     printf(" - number of serialization failures: " INT64_FORMAT " (%.3f%%)\n",
                               6500                 :                :                            sstats->serialization_failures,
                               6501                 :                :                            (100.0 * sstats->serialization_failures /
                               6502                 :                :                             script_total_cnt));
                               6503                 :              0 :                     printf(" - number of deadlock failures: " INT64_FORMAT " (%.3f%%)\n",
                               6504                 :                :                            sstats->deadlock_failures,
                               6505                 :                :                            (100.0 * sstats->deadlock_failures /
                               6506                 :                :                             script_total_cnt));
                               6507                 :                :                 }
                               6508                 :                : 
                               6509                 :                :                 /* it can be non-zero only if max_tries is not equal to one */
  753 ishii@postgresql.org     6510         [ -  + ]:CBC           9 :                 if (max_tries != 1)
                               6511                 :                :                 {
  753 ishii@postgresql.org     6512                 :UBC           0 :                     printf(" - number of transactions retried: " INT64_FORMAT " (%.3f%%)\n",
                               6513                 :                :                            sstats->retried,
                               6514                 :                :                            100.0 * sstats->retried / script_total_cnt);
                               6515                 :              0 :                     printf(" - total number of retries: " INT64_FORMAT "\n",
                               6516                 :                :                            sstats->retries);
                               6517                 :                :                 }
                               6518                 :                : 
  753 ishii@postgresql.org     6519   [ -  +  -  -  :CBC           9 :                 if (throttle_delay && latency_limit && script_total_cnt > 0)
                                              -  - ]
 2336 tgl@sss.pgh.pa.us        6520                 :UBC           0 :                     printf(" - number of transactions skipped: " INT64_FORMAT " (%.3f%%)\n",
                               6521                 :                :                            sstats->skipped,
                               6522                 :                :                            100.0 * sstats->skipped / script_total_cnt);
                               6523                 :                : 
 2336 tgl@sss.pgh.pa.us        6524                 :CBC           9 :                 printSimpleStats(" - latency", &sstats->latency);
                               6525                 :                :             }
                               6526                 :                : 
                               6527                 :                :             /*
                               6528                 :                :              * Report per-command statistics: latencies, retries after errors,
                               6529                 :                :              * failures (errors without retrying).
                               6530                 :                :              */
 1971 alvherre@alvh.no-ip.     6531         [ +  + ]:             11 :             if (report_per_command)
                               6532                 :                :             {
                               6533                 :                :                 Command   **commands;
                               6534                 :                : 
  753 ishii@postgresql.org     6535   [ +  -  -  + ]:              2 :                 printf("%sstatement latencies in milliseconds%s:\n",
                               6536                 :                :                        per_script_stats ? " - " : "",
                               6537                 :                :                        (max_tries == 1 ?
                               6538                 :                :                         " and failures" :
                               6539                 :                :                         ", failures and retries"));
                               6540                 :                : 
 2995 alvherre@alvh.no-ip.     6541                 :              2 :                 for (commands = sql_script[i].commands;
                               6542         [ +  + ]:              5 :                      *commands != NULL;
                               6543                 :              3 :                      commands++)
                               6544                 :                :                 {
 2336 tgl@sss.pgh.pa.us        6545                 :              3 :                     SimpleStats *cstats = &(*commands)->stats;
                               6546                 :                : 
  753 ishii@postgresql.org     6547         [ +  - ]:              3 :                     if (max_tries == 1)
                               6548         [ +  - ]:              3 :                         printf("   %11.3f  %10" INT64_MODIFIER "d  %s\n",
                               6549                 :                :                                (cstats->count > 0) ?
                               6550                 :                :                                1000.0 * cstats->sum / cstats->count : 0.0,
                               6551                 :                :                                (*commands)->failures,
                               6552                 :                :                                (*commands)->first_line);
                               6553                 :                :                     else
  753 ishii@postgresql.org     6554         [ #  # ]:UBC           0 :                         printf("   %11.3f  %10" INT64_MODIFIER "d  %10" INT64_MODIFIER "d  %s\n",
                               6555                 :                :                                (cstats->count > 0) ?
                               6556                 :                :                                1000.0 * cstats->sum / cstats->count : 0.0,
                               6557                 :                :                                (*commands)->failures,
                               6558                 :                :                                (*commands)->retries,
                               6559                 :                :                                (*commands)->first_line);
                               6560                 :                :                 }
                               6561                 :                :             }
                               6562                 :                :         }
                               6563                 :                :     }
                               6564                 :                : }
                               6565                 :                : 
                               6566                 :                : /*
                               6567                 :                :  * Set up a random seed according to seed parameter (NULL means default),
                               6568                 :                :  * and initialize base_random_sequence for use in initializing other sequences.
                               6569                 :                :  */
                               6570                 :                : static bool
 2206 tgl@sss.pgh.pa.us        6571                 :CBC         167 : set_random_seed(const char *seed)
                               6572                 :                : {
                               6573                 :                :     uint64      iseed;
                               6574                 :                : 
 2211 teodor@sigaev.ru         6575   [ +  +  -  + ]:            167 :     if (seed == NULL || strcmp(seed, "time") == 0)
                               6576                 :                :     {
                               6577                 :                :         /* rely on current time */
 1131 tmunro@postgresql.or     6578                 :            163 :         iseed = pg_time_now();
                               6579                 :                :     }
 2211 teodor@sigaev.ru         6580         [ -  + ]:              4 :     else if (strcmp(seed, "rand") == 0)
                               6581                 :                :     {
                               6582                 :                :         /* use some "strong" random source */
 2211 teodor@sigaev.ru         6583         [ #  # ]:UBC           0 :         if (!pg_strong_random(&iseed, sizeof(iseed)))
                               6584                 :                :         {
 1558 peter@eisentraut.org     6585                 :              0 :             pg_log_error("could not generate random seed");
 2206 tgl@sss.pgh.pa.us        6586                 :              0 :             return false;
                               6587                 :                :         }
                               6588                 :                :     }
                               6589                 :                :     else
                               6590                 :                :     {
                               6591                 :                :         /* parse unsigned-int seed value */
                               6592                 :                :         unsigned long ulseed;
                               6593                 :                :         char        garbage;
                               6594                 :                : 
                               6595                 :                :         /* Don't try to use UINT64_FORMAT here; it might not work for sscanf */
 1824 tgl@sss.pgh.pa.us        6596         [ +  + ]:CBC           4 :         if (sscanf(seed, "%lu%c", &ulseed, &garbage) != 1)
                               6597                 :                :         {
 1558 peter@eisentraut.org     6598                 :              1 :             pg_log_error("unrecognized random seed option \"%s\"", seed);
  737 tgl@sss.pgh.pa.us        6599                 :              1 :             pg_log_error_detail("Expecting an unsigned integer, \"time\" or \"rand\".");
 2206                          6600                 :              1 :             return false;
                               6601                 :                :         }
 1824                          6602                 :              3 :         iseed = (uint64) ulseed;
                               6603                 :                :     }
                               6604                 :                : 
 2211 teodor@sigaev.ru         6605         [ +  + ]:            166 :     if (seed != NULL)
 1087 michael@paquier.xyz      6606                 :              3 :         pg_log_info("setting random seed to %llu", (unsigned long long) iseed);
                               6607                 :                : 
 2211 teodor@sigaev.ru         6608                 :            166 :     random_seed = iseed;
                               6609                 :                : 
                               6610                 :                :     /* Initialize base_random_sequence using seed */
  868 tgl@sss.pgh.pa.us        6611                 :            166 :     pg_prng_seed(&base_random_sequence, (uint64) iseed);
                               6612                 :                : 
 2206                          6613                 :            166 :     return true;
                               6614                 :                : }
                               6615                 :                : 
                               6616                 :                : int
 8768 bruce@momjian.us         6617                 :            165 : main(int argc, char **argv)
                               6618                 :                : {
                               6619                 :                :     static struct option long_options[] = {
                               6620                 :                :         /* systematic long/short named options */
                               6621                 :                :         {"builtin", required_argument, NULL, 'b'},
                               6622                 :                :         {"client", required_argument, NULL, 'c'},
                               6623                 :                :         {"connect", no_argument, NULL, 'C'},
                               6624                 :                :         {"dbname", required_argument, NULL, 'd'},
                               6625                 :                :         {"define", required_argument, NULL, 'D'},
                               6626                 :                :         {"file", required_argument, NULL, 'f'},
                               6627                 :                :         {"fillfactor", required_argument, NULL, 'F'},
                               6628                 :                :         {"host", required_argument, NULL, 'h'},
                               6629                 :                :         {"initialize", no_argument, NULL, 'i'},
                               6630                 :                :         {"init-steps", required_argument, NULL, 'I'},
                               6631                 :                :         {"jobs", required_argument, NULL, 'j'},
                               6632                 :                :         {"log", no_argument, NULL, 'l'},
                               6633                 :                :         {"latency-limit", required_argument, NULL, 'L'},
                               6634                 :                :         {"no-vacuum", no_argument, NULL, 'n'},
                               6635                 :                :         {"port", required_argument, NULL, 'p'},
                               6636                 :                :         {"progress", required_argument, NULL, 'P'},
                               6637                 :                :         {"protocol", required_argument, NULL, 'M'},
                               6638                 :                :         {"quiet", no_argument, NULL, 'q'},
                               6639                 :                :         {"report-per-command", no_argument, NULL, 'r'},
                               6640                 :                :         {"rate", required_argument, NULL, 'R'},
                               6641                 :                :         {"scale", required_argument, NULL, 's'},
                               6642                 :                :         {"select-only", no_argument, NULL, 'S'},
                               6643                 :                :         {"skip-some-updates", no_argument, NULL, 'N'},
                               6644                 :                :         {"time", required_argument, NULL, 'T'},
                               6645                 :                :         {"transactions", required_argument, NULL, 't'},
                               6646                 :                :         {"username", required_argument, NULL, 'U'},
                               6647                 :                :         {"vacuum-all", no_argument, NULL, 'v'},
                               6648                 :                :         /* long-named only options */
                               6649                 :                :         {"unlogged-tables", no_argument, NULL, 1},
                               6650                 :                :         {"tablespace", required_argument, NULL, 2},
                               6651                 :                :         {"index-tablespace", required_argument, NULL, 3},
                               6652                 :                :         {"sampling-rate", required_argument, NULL, 4},
                               6653                 :                :         {"aggregate-interval", required_argument, NULL, 5},
                               6654                 :                :         {"progress-timestamp", no_argument, NULL, 6},
                               6655                 :                :         {"log-prefix", required_argument, NULL, 7},
                               6656                 :                :         {"foreign-keys", no_argument, NULL, 8},
                               6657                 :                :         {"random-seed", required_argument, NULL, 9},
                               6658                 :                :         {"show-script", required_argument, NULL, 10},
                               6659                 :                :         {"partitions", required_argument, NULL, 11},
                               6660                 :                :         {"partition-method", required_argument, NULL, 12},
                               6661                 :                :         {"failures-detailed", no_argument, NULL, 13},
                               6662                 :                :         {"max-tries", required_argument, NULL, 14},
                               6663                 :                :         {"verbose-errors", no_argument, NULL, 15},
                               6664                 :                :         {"exit-on-abort", no_argument, NULL, 16},
                               6665                 :                :         {"debug", no_argument, NULL, 17},
                               6666                 :                :         {NULL, 0, NULL, 0}
                               6667                 :                :     };
                               6668                 :                : 
                               6669                 :                :     int         c;
 2344 tgl@sss.pgh.pa.us        6670                 :            165 :     bool        is_init_mode = false;   /* initialize mode? */
                               6671                 :            165 :     char       *initialize_steps = NULL;
                               6672                 :            165 :     bool        foreign_keys = false;
                               6673                 :            165 :     bool        is_no_vacuum = false;
                               6674                 :            165 :     bool        do_vacuum_accounts = false; /* vacuum accounts table? */
                               6675                 :                :     int         optindex;
 5819                          6676                 :            165 :     bool        scale_given = false;
                               6677                 :                : 
 3533 ishii@postgresql.org     6678                 :            165 :     bool        benchmarking_option_set = false;
                               6679                 :            165 :     bool        initialization_option_set = false;
 3000 alvherre@alvh.no-ip.     6680                 :            165 :     bool        internal_script_used = false;
                               6681                 :                : 
                               6682                 :                :     CState     *state;          /* status of clients */
                               6683                 :                :     TState     *threads;        /* array of thread */
                               6684                 :                : 
                               6685                 :                :     pg_time_usec_t
                               6686                 :                :                 start_time,     /* start up time */
 1131 tmunro@postgresql.or     6687                 :            165 :                 bench_start = 0,    /* first recorded benchmarking time */
                               6688                 :                :                 conn_total_duration;    /* cumulated connection time in
                               6689                 :                :                                          * threads */
 3471 heikki.linnakangas@i     6690                 :            165 :     int64       latency_late = 0;
                               6691                 :                :     StatsData   stats;
                               6692                 :                :     int         weight;
                               6693                 :                : 
                               6694                 :                :     int         i;
                               6695                 :                :     int         nclients_dealt;
                               6696                 :                : 
                               6697                 :                : #ifdef HAVE_GETRLIMIT
                               6698                 :                :     struct rlimit rlim;
                               6699                 :                : #endif
                               6700                 :                : 
                               6701                 :                :     PGconn     *con;
                               6702                 :                :     char       *env;
                               6703                 :                : 
 2014 peter_e@gmx.net          6704                 :            165 :     int         exit_code = 0;
                               6705                 :                :     struct timeval tv;
                               6706                 :                : 
                               6707                 :                :     /*
                               6708                 :                :      * Record difference between Unix time and instr_time time.  We'll use
                               6709                 :                :      * this for logging and aggregation.
                               6710                 :                :      */
 1008 tmunro@postgresql.or     6711                 :            165 :     gettimeofday(&tv, NULL);
                               6712                 :            165 :     epoch_shift = tv.tv_sec * INT64CONST(1000000) + tv.tv_usec - pg_time_now();
                               6713                 :                : 
 1840 peter@eisentraut.org     6714                 :            165 :     pg_logging_init(argv[0]);
 5525 peter_e@gmx.net          6715                 :            165 :     progname = get_progname(argv[0]);
                               6716                 :                : 
                               6717         [ +  - ]:            165 :     if (argc > 1)
                               6718                 :                :     {
                               6719   [ +  +  -  + ]:            165 :         if (strcmp(argv[1], "--help") == 0 || strcmp(argv[1], "-?") == 0)
                               6720                 :                :         {
 4302 rhaas@postgresql.org     6721                 :              1 :             usage();
 5525 peter_e@gmx.net          6722                 :              1 :             exit(0);
                               6723                 :                :         }
                               6724   [ +  -  +  + ]:            164 :         if (strcmp(argv[1], "--version") == 0 || strcmp(argv[1], "-V") == 0)
                               6725                 :                :         {
                               6726                 :              1 :             puts("pgbench (PostgreSQL) " PG_VERSION);
                               6727                 :              1 :             exit(0);
                               6728                 :                :         }
                               6729                 :                :     }
                               6730                 :                : 
 1845 michael@paquier.xyz      6731                 :            163 :     state = (CState *) pg_malloc0(sizeof(CState));
                               6732                 :                : 
                               6733                 :                :     /* set random seed early, because it may be used while parsing scripts. */
 2206 tgl@sss.pgh.pa.us        6734         [ -  + ]:            163 :     if (!set_random_seed(getenv("PGBENCH_RANDOM_SEED")))
  737 tgl@sss.pgh.pa.us        6735                 :UBC           0 :         pg_fatal("error while setting random seed from PGBENCH_RANDOM_SEED environment variable");
                               6736                 :                : 
   20 nathan@postgresql.or     6737         [ +  + ]:GNC        1173 :     while ((c = getopt_long(argc, argv, "b:c:Cd:D:f:F:h:iI:j:lL:M:nNp:P:qrR:s:St:T:U:v", long_options, &optindex)) != -1)
                               6738                 :                :     {
                               6739                 :                :         char       *script;
                               6740                 :                : 
 8768 bruce@momjian.us         6741   [ +  +  +  -  :CBC        1078 :         switch (c)
                                     +  +  +  +  +  
                                     +  +  +  +  +  
                                     +  +  +  +  +  
                                     +  +  +  +  +  
                                     +  +  +  +  +  
                                     +  +  +  +  +  
                                     +  +  +  +  +  
                                     -  +  +  +  +  
                                                 + ]
                               6742                 :                :         {
  489 peter@eisentraut.org     6743                 :             12 :             case 'b':
                               6744         [ +  + ]:             12 :                 if (strcmp(optarg, "list") == 0)
                               6745                 :                :                 {
                               6746                 :              1 :                     listAvailableScripts();
                               6747                 :              1 :                     exit(0);
                               6748                 :                :                 }
                               6749                 :             11 :                 weight = parseScriptWeight(optarg, &script);
                               6750                 :              9 :                 process_builtin(findBuiltin(script), weight);
 2344 tgl@sss.pgh.pa.us        6751                 :              7 :                 benchmarking_option_set = true;
  489 peter@eisentraut.org     6752                 :              7 :                 internal_script_used = true;
 8768 bruce@momjian.us         6753                 :              7 :                 break;
                               6754                 :             23 :             case 'c':
 3533 ishii@postgresql.org     6755                 :             23 :                 benchmarking_option_set = true;
  995 michael@paquier.xyz      6756         [ +  + ]:             23 :                 if (!option_parse_int(optarg, "-c/--clients", 1, INT_MAX,
                               6757                 :                :                                       &nclients))
                               6758                 :                :                 {
 8768 bruce@momjian.us         6759                 :              1 :                     exit(1);
                               6760                 :                :                 }
                               6761                 :                : #ifdef HAVE_GETRLIMIT
                               6762         [ -  + ]:             22 :                 if (getrlimit(RLIMIT_NOFILE, &rlim) == -1)
  737 tgl@sss.pgh.pa.us        6763                 :UBC           0 :                     pg_fatal("getrlimit failed: %m");
 3206 tgl@sss.pgh.pa.us        6764         [ -  + ]:CBC          22 :                 if (rlim.rlim_cur < nclients + 3)
                               6765                 :                :                 {
  737 tgl@sss.pgh.pa.us        6766                 :UBC           0 :                     pg_log_error("need at least %d open files, but system limit is %ld",
                               6767                 :                :                                  nclients + 3, (long) rlim.rlim_cur);
                               6768                 :              0 :                     pg_log_error_hint("Reduce number of clients, or use limit/ulimit to increase the system limit.");
 8768 bruce@momjian.us         6769                 :              0 :                     exit(1);
                               6770                 :                :                 }
                               6771                 :                : #endif                          /* HAVE_GETRLIMIT */
 8768 bruce@momjian.us         6772                 :CBC          22 :                 break;
 8207                          6773                 :              2 :             case 'C':
 3533 ishii@postgresql.org     6774                 :              2 :                 benchmarking_option_set = true;
 5136 itagaki.takahiro@gma     6775                 :              2 :                 is_connect = true;
 8207 bruce@momjian.us         6776                 :              2 :                 break;
  489 peter@eisentraut.org     6777                 :LBC         (3) :             case 'd':
   20 nathan@postgresql.or     6778                 :UNC           0 :                 dbName = pg_strdup(optarg);
 6772 ishii@postgresql.org     6779                 :LBC         (3) :                 break;
 6472 ishii@postgresql.org     6780                 :CBC         433 :             case 'D':
                               6781                 :                :                 {
                               6782                 :                :                     char       *p;
                               6783                 :                : 
 3533                          6784                 :            433 :                     benchmarking_option_set = true;
                               6785                 :                : 
 6472                          6786   [ +  +  +  -  :            433 :                     if ((p = strchr(optarg, '=')) == NULL || p == optarg || *(p + 1) == '\0')
                                              -  + ]
  737 tgl@sss.pgh.pa.us        6787                 :              1 :                         pg_fatal("invalid variable definition: \"%s\"", optarg);
                               6788                 :                : 
 6472 ishii@postgresql.org     6789                 :            432 :                     *p++ = '\0';
  753                          6790         [ -  + ]:            432 :                     if (!putVariable(&state[0].variables, "option", optarg, p))
 6472 ishii@postgresql.org     6791                 :UBC           0 :                         exit(1);
                               6792                 :                :                 }
 6472 ishii@postgresql.org     6793                 :CBC         432 :                 break;
  489 peter@eisentraut.org     6794                 :            116 :             case 'f':
                               6795                 :            116 :                 weight = parseScriptWeight(optarg, &script);
                               6796                 :            116 :                 process_file(script, weight);
                               6797                 :             75 :                 benchmarking_option_set = true;
                               6798                 :             75 :                 break;
 6216 ishii@postgresql.org     6799                 :              3 :             case 'F':
 3533                          6800                 :              3 :                 initialization_option_set = true;
  995 michael@paquier.xyz      6801         [ +  + ]:              3 :                 if (!option_parse_int(optarg, "-F/--fillfactor", 10, 100,
                               6802                 :                :                                       &fillfactor))
 6216 ishii@postgresql.org     6803                 :              1 :                     exit(1);
                               6804                 :              2 :                 break;
  489 peter@eisentraut.org     6805                 :              1 :             case 'h':
                               6806                 :              1 :                 pghost = pg_strdup(optarg);
                               6807                 :              1 :                 break;
                               6808                 :              9 :             case 'i':
                               6809                 :              9 :                 is_init_mode = true;
                               6810                 :              9 :                 break;
                               6811                 :              4 :             case 'I':
                               6812                 :              4 :                 pg_free(initialize_steps);
                               6813                 :              4 :                 initialize_steps = pg_strdup(optarg);
                               6814                 :              4 :                 checkInitSteps(initialize_steps);
                               6815                 :              3 :                 initialization_option_set = true;
                               6816                 :              3 :                 break;
                               6817                 :              4 :             case 'j':           /* jobs */
                               6818                 :              4 :                 benchmarking_option_set = true;
                               6819         [ +  + ]:              4 :                 if (!option_parse_int(optarg, "-j/--jobs", 1, INT_MAX,
                               6820                 :                :                                       &nthreads))
                               6821                 :                :                 {
                               6822                 :              1 :                     exit(1);
                               6823                 :                :                 }
                               6824                 :              3 :                 break;
                               6825                 :              7 :             case 'l':
                               6826                 :              7 :                 benchmarking_option_set = true;
                               6827                 :              7 :                 use_log = true;
                               6828                 :              7 :                 break;
                               6829                 :              3 :             case 'L':
                               6830                 :                :                 {
                               6831                 :              3 :                     double      limit_ms = atof(optarg);
                               6832                 :                : 
                               6833         [ +  + ]:              3 :                     if (limit_ms <= 0.0)
                               6834                 :              1 :                         pg_fatal("invalid latency limit: \"%s\"", optarg);
                               6835                 :              2 :                     benchmarking_option_set = true;
                               6836                 :              2 :                     latency_limit = (int64) (limit_ms * 1000);
                               6837                 :                :                 }
                               6838                 :              2 :                 break;
 5870 ishii@postgresql.org     6839                 :             77 :             case 'M':
 3533                          6840                 :             77 :                 benchmarking_option_set = true;
 5870                          6841         [ +  + ]:            218 :                 for (querymode = 0; querymode < NUM_QUERYMODE; querymode++)
                               6842         [ +  + ]:            217 :                     if (strcmp(optarg, QUERYMODE[querymode]) == 0)
                               6843                 :             76 :                         break;
                               6844         [ +  + ]:             77 :                 if (querymode >= NUM_QUERYMODE)
  737 tgl@sss.pgh.pa.us        6845                 :              1 :                     pg_fatal("invalid query mode (-M): \"%s\"", optarg);
 5870 ishii@postgresql.org     6846                 :             76 :                 break;
  489 peter@eisentraut.org     6847                 :             87 :             case 'n':
                               6848                 :             87 :                 is_no_vacuum = true;
                               6849                 :             87 :                 break;
                               6850                 :              1 :             case 'N':
                               6851                 :              1 :                 process_builtin(findBuiltin("simple-update"), 1);
                               6852                 :              1 :                 benchmarking_option_set = true;
                               6853                 :              1 :                 internal_script_used = true;
                               6854                 :              1 :                 break;
                               6855                 :              1 :             case 'p':
                               6856                 :              1 :                 pgport = pg_strdup(optarg);
                               6857                 :              1 :                 break;
 3924 ishii@postgresql.org     6858                 :              2 :             case 'P':
 3533                          6859                 :              2 :                 benchmarking_option_set = true;
  995 michael@paquier.xyz      6860         [ +  + ]:              2 :                 if (!option_parse_int(optarg, "-P/--progress", 1, INT_MAX,
                               6861                 :                :                                       &progress))
 3924 ishii@postgresql.org     6862                 :              1 :                     exit(1);
                               6863                 :              1 :                 break;
  489 peter@eisentraut.org     6864                 :              1 :             case 'q':
                               6865                 :              1 :                 initialization_option_set = true;
                               6866                 :              1 :                 use_quiet = true;
                               6867                 :              1 :                 break;
                               6868                 :              2 :             case 'r':
                               6869                 :              2 :                 benchmarking_option_set = true;
                               6870                 :              2 :                 report_per_command = true;
                               6871                 :              2 :                 break;
 3918 ishii@postgresql.org     6872                 :              3 :             case 'R':
                               6873                 :                :                 {
                               6874                 :                :                     /* get a double from the beginning of option value */
 3631 bruce@momjian.us         6875                 :              3 :                     double      throttle_value = atof(optarg);
                               6876                 :                : 
 3533 ishii@postgresql.org     6877                 :              3 :                     benchmarking_option_set = true;
                               6878                 :                : 
 3631 bruce@momjian.us         6879         [ +  + ]:              3 :                     if (throttle_value <= 0.0)
  737 tgl@sss.pgh.pa.us        6880                 :              1 :                         pg_fatal("invalid rate limit: \"%s\"", optarg);
                               6881                 :                :                     /* Invert rate limit into per-transaction delay in usec */
 2028                          6882                 :              2 :                     throttle_delay = 1000000.0 / throttle_value;
                               6883                 :                :                 }
 3918 ishii@postgresql.org     6884                 :              2 :                 break;
  489 peter@eisentraut.org     6885                 :              3 :             case 's':
                               6886                 :              3 :                 scale_given = true;
                               6887         [ +  + ]:              3 :                 if (!option_parse_int(optarg, "-s/--scale", 1, INT_MAX,
                               6888                 :                :                                       &scale))
                               6889                 :              1 :                     exit(1);
                               6890                 :              2 :                 break;
                               6891                 :            134 :             case 'S':
                               6892                 :            134 :                 process_builtin(findBuiltin("select-only"), 1);
                               6893                 :            133 :                 benchmarking_option_set = true;
                               6894                 :            133 :                 internal_script_used = true;
                               6895                 :            133 :                 break;
                               6896                 :             98 :             case 't':
                               6897                 :             98 :                 benchmarking_option_set = true;
                               6898         [ +  + ]:             98 :                 if (!option_parse_int(optarg, "-t/--transactions", 1, INT_MAX,
                               6899                 :                :                                       &nxacts))
                               6900                 :              1 :                     exit(1);
                               6901                 :             97 :                 break;
                               6902                 :              5 :             case 'T':
                               6903                 :              5 :                 benchmarking_option_set = true;
                               6904         [ +  + ]:              5 :                 if (!option_parse_int(optarg, "-T/--time", 1, INT_MAX,
                               6905                 :                :                                       &duration))
                               6906                 :              1 :                     exit(1);
                               6907                 :              4 :                 break;
                               6908                 :              1 :             case 'U':
                               6909                 :              1 :                 username = pg_strdup(optarg);
                               6910                 :              1 :                 break;
                               6911                 :              1 :             case 'v':
                               6912                 :              1 :                 benchmarking_option_set = true;
                               6913                 :              1 :                 do_vacuum_accounts = true;
 3471 heikki.linnakangas@i     6914                 :              1 :                 break;
 2344 tgl@sss.pgh.pa.us        6915                 :              2 :             case 1:             /* unlogged-tables */
                               6916                 :              2 :                 initialization_option_set = true;
                               6917                 :              2 :                 unlogged_tables = true;
 4647 rhaas@postgresql.org     6918                 :              2 :                 break;
 4326 bruce@momjian.us         6919                 :              1 :             case 2:             /* tablespace */
 3533 ishii@postgresql.org     6920                 :              1 :                 initialization_option_set = true;
 4202 bruce@momjian.us         6921                 :              1 :                 tablespace = pg_strdup(optarg);
 4647 rhaas@postgresql.org     6922                 :              1 :                 break;
 4326 bruce@momjian.us         6923                 :              1 :             case 3:             /* index-tablespace */
 3533 ishii@postgresql.org     6924                 :              1 :                 initialization_option_set = true;
 4202 bruce@momjian.us         6925                 :              1 :                 index_tablespace = pg_strdup(optarg);
 4647 rhaas@postgresql.org     6926                 :              1 :                 break;
 2344 tgl@sss.pgh.pa.us        6927                 :              5 :             case 4:             /* sampling-rate */
 3533 ishii@postgresql.org     6928                 :              5 :                 benchmarking_option_set = true;
 4211 heikki.linnakangas@i     6929                 :              5 :                 sample_rate = atof(optarg);
                               6930   [ +  +  -  + ]:              5 :                 if (sample_rate <= 0.0 || sample_rate > 1.0)
  737 tgl@sss.pgh.pa.us        6931                 :              1 :                     pg_fatal("invalid sampling rate: \"%s\"", optarg);
 4211 heikki.linnakangas@i     6932                 :              4 :                 break;
 2344 tgl@sss.pgh.pa.us        6933                 :              6 :             case 5:             /* aggregate-interval */
 3533 ishii@postgresql.org     6934                 :              6 :                 benchmarking_option_set = true;
  995 michael@paquier.xyz      6935         [ +  + ]:              6 :                 if (!option_parse_int(optarg, "--aggregate-interval", 1, INT_MAX,
                               6936                 :                :                                       &agg_interval))
 4091 ishii@postgresql.org     6937                 :              1 :                     exit(1);
                               6938                 :              5 :                 break;
 2344 tgl@sss.pgh.pa.us        6939                 :              2 :             case 6:             /* progress-timestamp */
 3133 teodor@sigaev.ru         6940                 :              2 :                 progress_timestamp = true;
                               6941                 :              2 :                 benchmarking_option_set = true;
                               6942                 :              2 :                 break;
 2344 tgl@sss.pgh.pa.us        6943                 :              4 :             case 7:             /* log-prefix */
 2713 rhaas@postgresql.org     6944                 :              4 :                 benchmarking_option_set = true;
                               6945                 :              4 :                 logfile_prefix = pg_strdup(optarg);
                               6946                 :              4 :                 break;
 2344 tgl@sss.pgh.pa.us        6947                 :              2 :             case 8:             /* foreign-keys */
                               6948                 :              2 :                 initialization_option_set = true;
                               6949                 :              2 :                 foreign_keys = true;
                               6950                 :              2 :                 break;
 2211 teodor@sigaev.ru         6951                 :              4 :             case 9:             /* random-seed */
                               6952                 :              4 :                 benchmarking_option_set = true;
 2206 tgl@sss.pgh.pa.us        6953         [ +  + ]:              4 :                 if (!set_random_seed(optarg))
  737                          6954                 :              1 :                     pg_fatal("error while setting random seed from --random-seed option");
 2211 teodor@sigaev.ru         6955                 :              3 :                 break;
 1734 tmunro@postgresql.or     6956                 :              1 :             case 10:            /* list */
                               6957                 :                :                 {
                               6958                 :              1 :                     const BuiltinScript *s = findBuiltin(optarg);
                               6959                 :                : 
                               6960                 :              1 :                     fprintf(stderr, "-- %s: %s\n%s\n", s->name, s->desc, s->script);
                               6961                 :              1 :                     exit(0);
                               6962                 :                :                 }
                               6963                 :                :                 break;
 1657 akapila@postgresql.o     6964                 :              3 :             case 11:            /* partitions */
                               6965                 :              3 :                 initialization_option_set = true;
  697 michael@paquier.xyz      6966         [ +  + ]:              3 :                 if (!option_parse_int(optarg, "--partitions", 0, INT_MAX,
                               6967                 :                :                                       &partitions))
 1657 akapila@postgresql.o     6968                 :              1 :                     exit(1);
                               6969                 :              2 :                 break;
                               6970                 :              3 :             case 12:            /* partition-method */
                               6971                 :              3 :                 initialization_option_set = true;
                               6972         [ -  + ]:              3 :                 if (pg_strcasecmp(optarg, "range") == 0)
 1657 akapila@postgresql.o     6973                 :UBC           0 :                     partition_method = PART_RANGE;
 1657 akapila@postgresql.o     6974         [ +  + ]:CBC           3 :                 else if (pg_strcasecmp(optarg, "hash") == 0)
                               6975                 :              2 :                     partition_method = PART_HASH;
                               6976                 :                :                 else
  737 tgl@sss.pgh.pa.us        6977                 :              1 :                     pg_fatal("invalid partition method, expecting \"range\" or \"hash\", got: \"%s\"",
                               6978                 :                :                              optarg);
 1657 akapila@postgresql.o     6979                 :              2 :                 break;
  753 ishii@postgresql.org     6980                 :UBC           0 :             case 13:            /* failures-detailed */
                               6981                 :              0 :                 benchmarking_option_set = true;
                               6982                 :              0 :                 failures_detailed = true;
                               6983                 :              0 :                 break;
  753 ishii@postgresql.org     6984                 :CBC           4 :             case 14:            /* max-tries */
                               6985                 :                :                 {
                               6986                 :              4 :                     int32       max_tries_arg = atoi(optarg);
                               6987                 :                : 
                               6988         [ +  + ]:              4 :                     if (max_tries_arg < 0)
  737 tgl@sss.pgh.pa.us        6989                 :              1 :                         pg_fatal("invalid number of maximum tries: \"%s\"", optarg);
                               6990                 :                : 
  753 ishii@postgresql.org     6991                 :              3 :                     benchmarking_option_set = true;
                               6992                 :              3 :                     max_tries = (uint32) max_tries_arg;
                               6993                 :                :                 }
                               6994                 :              3 :                 break;
                               6995                 :              2 :             case 15:            /* verbose-errors */
                               6996                 :              2 :                 benchmarking_option_set = true;
                               6997                 :              2 :                 verbose_errors = true;
                               6998                 :              2 :                 break;
  228 ishii@postgresql.org     6999                 :GNC           1 :             case 16:            /* exit-on-abort */
                               7000                 :              1 :                 benchmarking_option_set = true;
                               7001                 :              1 :                 exit_on_abort = true;
                               7002                 :              1 :                 break;
   20 nathan@postgresql.or     7003                 :              2 :             case 17:            /* debug */
                               7004                 :              2 :                 pg_logging_increase_verbosity();
                               7005                 :              2 :                 break;
 8768 bruce@momjian.us         7006                 :CBC           2 :             default:
                               7007                 :                :                 /* getopt_long already emitted a complaint */
  737 tgl@sss.pgh.pa.us        7008                 :              2 :                 pg_log_error_hint("Try \"%s --help\" for more information.", progname);
 8768 bruce@momjian.us         7009                 :              2 :                 exit(1);
                               7010                 :                :         }
                               7011                 :                :     }
                               7012                 :                : 
                               7013                 :                :     /* set default script if none */
 3000 alvherre@alvh.no-ip.     7014   [ +  +  +  + ]:             95 :     if (num_scripts == 0 && !is_init_mode)
                               7015                 :                :     {
 2947 tgl@sss.pgh.pa.us        7016                 :             11 :         process_builtin(findBuiltin("tpcb-like"), 1);
 3000 alvherre@alvh.no-ip.     7017                 :             11 :         benchmarking_option_set = true;
                               7018                 :             11 :         internal_script_used = true;
                               7019                 :                :     }
                               7020                 :                : 
                               7021                 :                :     /* complete SQL command initialization and compute total weight */
 1921                          7022         [ +  + ]:            193 :     for (i = 0; i < num_scripts; i++)
                               7023                 :                :     {
                               7024                 :             99 :         Command   **commands = sql_script[i].commands;
                               7025                 :                : 
                               7026         [ +  + ]:            616 :         for (int j = 0; commands[j] != NULL; j++)
                               7027         [ +  + ]:            518 :             if (commands[j]->type == SQL_COMMAND)
                               7028                 :            243 :                 postprocess_sql_command(commands[j]);
                               7029                 :                : 
                               7030                 :                :         /* cannot overflow: weight is 32b, total_weight 64b */
 2948                          7031                 :             98 :         total_weight += sql_script[i].weight;
                               7032                 :                :     }
                               7033                 :                : 
 2938                          7034   [ +  +  +  + ]:             94 :     if (total_weight == 0 && !is_init_mode)
  737 tgl@sss.pgh.pa.us        7035                 :              1 :         pg_fatal("total script weight must not be zero");
                               7036                 :                : 
                               7037                 :                :     /* show per script stats if several scripts are used */
 2995 alvherre@alvh.no-ip.     7038         [ +  + ]:             93 :     if (num_scripts > 1)
                               7039                 :              3 :         per_script_stats = true;
                               7040                 :                : 
                               7041                 :                :     /*
                               7042                 :                :      * Don't need more threads than there are clients.  (This is not merely an
                               7043                 :                :      * optimization; throttle_delay is calculated incorrectly below if some
                               7044                 :                :      * threads have no clients assigned to them.)
                               7045                 :                :      */
 3208 heikki.linnakangas@i     7046         [ +  + ]:             93 :     if (nthreads > nclients)
                               7047                 :              1 :         nthreads = nclients;
                               7048                 :                : 
                               7049                 :                :     /*
                               7050                 :                :      * Convert throttle_delay to a per-thread delay time.  Note that this
                               7051                 :                :      * might be a fractional number of usec, but that's OK, since it's just
                               7052                 :                :      * the center of a Poisson distribution of delays.
                               7053                 :                :      */
 3918 ishii@postgresql.org     7054                 :             93 :     throttle_delay *= nthreads;
                               7055                 :                : 
   20 nathan@postgresql.or     7056         [ +  - ]:GNC          93 :     if (dbName == NULL)
                               7057                 :                :     {
                               7058         [ +  + ]:             93 :         if (argc > optind)
                               7059                 :              1 :             dbName = argv[optind++];
                               7060                 :                :         else
                               7061                 :                :         {
                               7062   [ +  +  +  - ]:             92 :             if ((env = getenv("PGDATABASE")) != NULL && *env != '\0')
                               7063                 :             78 :                 dbName = env;
                               7064   [ -  +  -  - ]:             14 :             else if ((env = getenv("PGUSER")) != NULL && *env != '\0')
   20 nathan@postgresql.or     7065                 :UNC           0 :                 dbName = env;
                               7066                 :                :             else
   20 nathan@postgresql.or     7067                 :GNC          14 :                 dbName = get_user_name_or_exit(progname);
                               7068                 :                :         }
                               7069                 :                :     }
                               7070                 :                : 
 1690 peter@eisentraut.org     7071         [ -  + ]:CBC          93 :     if (optind < argc)
                               7072                 :                :     {
  737 tgl@sss.pgh.pa.us        7073                 :UBC           0 :         pg_log_error("too many command-line arguments (first is \"%s\")",
                               7074                 :                :                      argv[optind]);
                               7075                 :              0 :         pg_log_error_hint("Try \"%s --help\" for more information.", progname);
 1690 peter@eisentraut.org     7076                 :              0 :         exit(1);
                               7077                 :                :     }
                               7078                 :                : 
 8768 bruce@momjian.us         7079         [ +  + ]:CBC          93 :     if (is_init_mode)
                               7080                 :                :     {
 3533 ishii@postgresql.org     7081         [ +  + ]:              5 :         if (benchmarking_option_set)
  737 tgl@sss.pgh.pa.us        7082                 :              1 :             pg_fatal("some of the specified options cannot be used in initialization (-i) mode");
                               7083                 :                : 
 1657 akapila@postgresql.o     7084   [ +  +  +  + ]:              4 :         if (partitions == 0 && partition_method != PART_NONE)
  737 tgl@sss.pgh.pa.us        7085                 :              1 :             pg_fatal("--partition-method requires greater than zero --partitions");
                               7086                 :                : 
                               7087                 :                :         /* set default method */
 1657 akapila@postgresql.o     7088   [ +  +  +  + ]:              3 :         if (partitions > 0 && partition_method == PART_NONE)
                               7089                 :              1 :             partition_method = PART_RANGE;
                               7090                 :                : 
 2344 tgl@sss.pgh.pa.us        7091         [ +  + ]:              3 :         if (initialize_steps == NULL)
                               7092                 :              1 :             initialize_steps = pg_strdup(DEFAULT_INIT_STEPS);
                               7093                 :                : 
                               7094         [ +  + ]:              3 :         if (is_no_vacuum)
                               7095                 :                :         {
                               7096                 :                :             /* Remove any vacuum step in initialize_steps */
                               7097                 :                :             char       *p;
                               7098                 :                : 
                               7099         [ +  + ]:              4 :             while ((p = strchr(initialize_steps, 'v')) != NULL)
                               7100                 :              3 :                 *p = ' ';
                               7101                 :                :         }
                               7102                 :                : 
                               7103         [ +  + ]:              3 :         if (foreign_keys)
                               7104                 :                :         {
                               7105                 :                :             /* Add 'f' to end of initialize_steps, if not already there */
                               7106         [ +  - ]:              2 :             if (strchr(initialize_steps, 'f') == NULL)
                               7107                 :                :             {
                               7108                 :                :                 initialize_steps = (char *)
                               7109                 :              2 :                     pg_realloc(initialize_steps,
                               7110                 :              2 :                                strlen(initialize_steps) + 2);
                               7111                 :              2 :                 strcat(initialize_steps, "f");
                               7112                 :                :             }
                               7113                 :                :         }
                               7114                 :                : 
                               7115                 :              3 :         runInitSteps(initialize_steps);
 8768 bruce@momjian.us         7116                 :              3 :         exit(0);
                               7117                 :                :     }
                               7118                 :                :     else
                               7119                 :                :     {
 3533 ishii@postgresql.org     7120         [ +  + ]:             88 :         if (initialization_option_set)
  737 tgl@sss.pgh.pa.us        7121                 :              2 :             pg_fatal("some of the specified options cannot be used in benchmarking mode");
                               7122                 :                :     }
                               7123                 :                : 
 2344                          7124   [ +  +  +  + ]:             86 :     if (nxacts > 0 && duration > 0)
  737                          7125                 :              2 :         pg_fatal("specify either a number of transactions (-t) or a duration (-T), not both");
                               7126                 :                : 
                               7127                 :                :     /* Use DEFAULT_NXACTS if neither nxacts nor duration is specified. */
 5694                          7128   [ +  +  +  + ]:             84 :     if (nxacts <= 0 && duration <= 0)
                               7129                 :              8 :         nxacts = DEFAULT_NXACTS;
                               7130                 :                : 
                               7131                 :                :     /* --sampling-rate may be used only with -l */
 4211 heikki.linnakangas@i     7132   [ +  +  +  + ]:             84 :     if (sample_rate > 0.0 && !use_log)
  737 tgl@sss.pgh.pa.us        7133                 :              1 :         pg_fatal("log sampling (--sampling-rate) is allowed only when logging transactions (-l)");
                               7134                 :                : 
                               7135                 :                :     /* --sampling-rate may not be used with --aggregate-interval */
 4091 ishii@postgresql.org     7136   [ +  +  +  + ]:             83 :     if (sample_rate > 0.0 && agg_interval > 0)
  737 tgl@sss.pgh.pa.us        7137                 :              1 :         pg_fatal("log sampling (--sampling-rate) and aggregation (--aggregate-interval) cannot be used at the same time");
                               7138                 :                : 
 3206                          7139   [ +  +  +  + ]:             82 :     if (agg_interval > 0 && !use_log)
  737                          7140                 :              1 :         pg_fatal("log aggregation is allowed only when actually logging transactions");
                               7141                 :                : 
 2713 rhaas@postgresql.org     7142   [ +  +  +  + ]:             81 :     if (!use_log && logfile_prefix)
  737 tgl@sss.pgh.pa.us        7143                 :              1 :         pg_fatal("log file prefix (--log-prefix) is allowed only when logging transactions (-l)");
                               7144                 :                : 
 3206                          7145   [ +  +  +  + ]:             80 :     if (duration > 0 && agg_interval > duration)
  737                          7146                 :              1 :         pg_fatal("number of seconds for aggregation (%d) must not be higher than test duration (%d)", agg_interval, duration);
                               7147                 :                : 
 3206                          7148   [ +  +  +  -  :             79 :     if (duration > 0 && agg_interval > 0 && duration % agg_interval != 0)
                                              +  - ]
  737                          7149                 :              1 :         pg_fatal("duration (%d) must be a multiple of aggregation interval (%d)", duration, agg_interval);
                               7150                 :                : 
 2414                          7151   [ +  +  +  - ]:             78 :     if (progress_timestamp && progress == 0)
  737                          7152                 :              1 :         pg_fatal("--progress-timestamp is allowed only under --progress");
                               7153                 :                : 
  753 ishii@postgresql.org     7154         [ +  + ]:             77 :     if (!max_tries)
                               7155                 :                :     {
                               7156   [ +  -  +  - ]:              1 :         if (!latency_limit && duration <= 0)
  737 tgl@sss.pgh.pa.us        7157                 :              1 :             pg_fatal("an unlimited number of transaction tries can only be used with --latency-limit or a duration (-T)");
                               7158                 :                :     }
                               7159                 :                : 
                               7160                 :                :     /*
                               7161                 :                :      * save main process id in the global variable because process id will be
                               7162                 :                :      * changed after fork.
                               7163                 :                :      */
 5136 itagaki.takahiro@gma     7164                 :             76 :     main_pid = (int) getpid();
                               7165                 :                : 
 6472 ishii@postgresql.org     7166         [ +  + ]:             76 :     if (nclients > 1)
                               7167                 :                :     {
 4212 tgl@sss.pgh.pa.us        7168                 :             14 :         state = (CState *) pg_realloc(state, sizeof(CState) * nclients);
 4994                          7169                 :             14 :         memset(state + 1, 0, sizeof(CState) * (nclients - 1));
                               7170                 :                : 
                               7171                 :                :         /* copy any -D switch values to all clients */
 6472 ishii@postgresql.org     7172         [ +  + ]:             50 :         for (i = 1; i < nclients; i++)
                               7173                 :                :         {
                               7174                 :                :             int         j;
                               7175                 :                : 
 5368                          7176                 :             36 :             state[i].id = i;
  753                          7177         [ +  + ]:             37 :             for (j = 0; j < state[0].variables.nvars; j++)
                               7178                 :                :             {
                               7179                 :              1 :                 Variable   *var = &state[0].variables.vars[j];
                               7180                 :                : 
 2287 teodor@sigaev.ru         7181         [ -  + ]:              1 :                 if (var->value.type != PGBT_NO_VALUE)
                               7182                 :                :                 {
  753 ishii@postgresql.org     7183         [ #  # ]:UBC           0 :                     if (!putVariableValue(&state[i].variables, "startup",
 2180 tgl@sss.pgh.pa.us        7184                 :              0 :                                           var->name, &var->value))
 2900                          7185                 :              0 :                         exit(1);
                               7186                 :                :                 }
                               7187                 :                :                 else
                               7188                 :                :                 {
  753 ishii@postgresql.org     7189         [ -  + ]:CBC           1 :                     if (!putVariable(&state[i].variables, "startup",
 2287 teodor@sigaev.ru         7190                 :              1 :                                      var->name, var->svalue))
 2900 tgl@sss.pgh.pa.us        7191                 :UBC           0 :                         exit(1);
                               7192                 :                :                 }
                               7193                 :                :             }
                               7194                 :                :         }
                               7195                 :                :     }
                               7196                 :                : 
                               7197                 :                :     /* other CState initializations */
 2215 teodor@sigaev.ru         7198         [ +  + ]:CBC         188 :     for (i = 0; i < nclients; i++)
                               7199                 :                :     {
                               7200                 :            112 :         state[i].cstack = conditional_stack_create();
 1976 alvherre@alvh.no-ip.     7201                 :            112 :         initRandomState(&state[i].cs_func_rs);
                               7202                 :                :     }
                               7203                 :                : 
                               7204                 :                :     /* opening connection... */
 8253 ishii@postgresql.org     7205                 :             76 :     con = doConnect();
                               7206         [ +  + ]:             76 :     if (con == NULL)
  737 tgl@sss.pgh.pa.us        7207                 :              1 :         pg_fatal("could not create connection for setup");
                               7208                 :                : 
                               7209                 :                :     /* report pgbench and server versions */
 1031                          7210                 :             75 :     printVersion(con);
                               7211                 :                : 
 1135 michael@paquier.xyz      7212   [ +  +  +  -  :             75 :     pg_log_debug("pghost: %s pgport: %s nclients: %d %s: %d dbName: %s",
                                              +  - ]
                               7213                 :                :                  PQhost(con), PQport(con), nclients,
                               7214                 :                :                  duration <= 0 ? "nxacts" : "duration",
                               7215                 :                :                  duration <= 0 ? nxacts : duration, PQdb(con));
                               7216                 :                : 
 3000 alvherre@alvh.no-ip.     7217         [ +  + ]:             75 :     if (internal_script_used)
 1657 akapila@postgresql.o     7218                 :              7 :         GetTableInfo(con, scale_given);
                               7219                 :                : 
                               7220                 :                :     /*
                               7221                 :                :      * :scale variables normally get -s or database scale, but don't override
                               7222                 :                :      * an explicit -D switch
                               7223                 :                :      */
  753 ishii@postgresql.org     7224         [ +  - ]:             74 :     if (lookupVariable(&state[0].variables, "scale") == NULL)
                               7225                 :                :     {
 5819 tgl@sss.pgh.pa.us        7226         [ +  + ]:            184 :         for (i = 0; i < nclients; i++)
                               7227                 :                :         {
  753 ishii@postgresql.org     7228         [ -  + ]:            110 :             if (!putVariableInt(&state[i].variables, "startup", "scale", scale))
 5819 tgl@sss.pgh.pa.us        7229                 :UBC           0 :                 exit(1);
                               7230                 :                :         }
                               7231                 :                :     }
                               7232                 :                : 
                               7233                 :                :     /*
                               7234                 :                :      * Define a :client_id variable that is unique per connection. But don't
                               7235                 :                :      * override an explicit -D switch.
                               7236                 :                :      */
  753 ishii@postgresql.org     7237         [ +  - ]:CBC          74 :     if (lookupVariable(&state[0].variables, "client_id") == NULL)
                               7238                 :                :     {
 3957 heikki.linnakangas@i     7239         [ +  + ]:            184 :         for (i = 0; i < nclients; i++)
  753 ishii@postgresql.org     7240         [ -  + ]:            110 :             if (!putVariableInt(&state[i].variables, "startup", "client_id", i))
 3957 heikki.linnakangas@i     7241                 :UBC           0 :                 exit(1);
                               7242                 :                :     }
                               7243                 :                : 
                               7244                 :                :     /* set default seed for hash functions */
  753 ishii@postgresql.org     7245         [ +  - ]:CBC          74 :     if (lookupVariable(&state[0].variables, "default_seed") == NULL)
                               7246                 :                :     {
  868 tgl@sss.pgh.pa.us        7247                 :             74 :         uint64      seed = pg_prng_uint64(&base_random_sequence);
                               7248                 :                : 
 2216 teodor@sigaev.ru         7249         [ +  + ]:            184 :         for (i = 0; i < nclients; i++)
  753 ishii@postgresql.org     7250         [ -  + ]:            110 :             if (!putVariableInt(&state[i].variables, "startup", "default_seed",
                               7251                 :                :                                 (int64) seed))
 2216 teodor@sigaev.ru         7252                 :UBC           0 :                 exit(1);
                               7253                 :                :     }
                               7254                 :                : 
                               7255                 :                :     /* set random seed unless overwritten */
  753 ishii@postgresql.org     7256         [ +  - ]:CBC          74 :     if (lookupVariable(&state[0].variables, "random_seed") == NULL)
                               7257                 :                :     {
 2211 teodor@sigaev.ru         7258         [ +  + ]:            184 :         for (i = 0; i < nclients; i++)
  753 ishii@postgresql.org     7259         [ -  + ]:            110 :             if (!putVariableInt(&state[i].variables, "startup", "random_seed",
                               7260                 :                :                                 random_seed))
 2211 teodor@sigaev.ru         7261                 :UBC           0 :                 exit(1);
                               7262                 :                :     }
                               7263                 :                : 
 6767 ishii@postgresql.org     7264         [ +  + ]:CBC          74 :     if (!is_no_vacuum)
                               7265                 :                :     {
                               7266                 :             10 :         fprintf(stderr, "starting vacuum...");
 3260 sfrost@snowman.net       7267                 :             10 :         tryExecuteStatement(con, "vacuum pgbench_branches");
                               7268                 :             10 :         tryExecuteStatement(con, "vacuum pgbench_tellers");
                               7269                 :             10 :         tryExecuteStatement(con, "truncate pgbench_history");
 6767 ishii@postgresql.org     7270                 :             10 :         fprintf(stderr, "end.\n");
                               7271                 :                : 
 6218                          7272         [ -  + ]:             10 :         if (do_vacuum_accounts)
                               7273                 :                :         {
 5456 tgl@sss.pgh.pa.us        7274                 :UBC           0 :             fprintf(stderr, "starting vacuum pgbench_accounts...");
 3260 sfrost@snowman.net       7275                 :              0 :             tryExecuteStatement(con, "vacuum analyze pgbench_accounts");
 8768 bruce@momjian.us         7276                 :              0 :             fprintf(stderr, "end.\n");
                               7277                 :                :         }
                               7278                 :                :     }
 6767 ishii@postgresql.org     7279                 :CBC          74 :     PQfinish(con);
                               7280                 :                : 
                               7281                 :                :     /* set up thread data structures */
 4212 tgl@sss.pgh.pa.us        7282                 :             74 :     threads = (TState *) pg_malloc(sizeof(TState) * nthreads);
 3208 heikki.linnakangas@i     7283                 :             74 :     nclients_dealt = 0;
                               7284                 :                : 
 4994 tgl@sss.pgh.pa.us        7285         [ +  + ]:            149 :     for (i = 0; i < nthreads; i++)
                               7286                 :                :     {
 4753 bruce@momjian.us         7287                 :             75 :         TState     *thread = &threads[i];
                               7288                 :                : 
 4994 tgl@sss.pgh.pa.us        7289                 :             75 :         thread->tid = i;
 3208 heikki.linnakangas@i     7290                 :             75 :         thread->state = &state[nclients_dealt];
                               7291                 :             75 :         thread->nstate =
                               7292                 :             75 :             (nclients - nclients_dealt + nthreads - i - 1) / (nthreads - i);
 1976 alvherre@alvh.no-ip.     7293                 :             75 :         initRandomState(&thread->ts_choose_rs);
                               7294                 :             75 :         initRandomState(&thread->ts_throttle_rs);
                               7295                 :             75 :         initRandomState(&thread->ts_sample_rs);
 2866 rhaas@postgresql.org     7296                 :             75 :         thread->logfile = NULL; /* filled in later */
 3471 heikki.linnakangas@i     7297                 :             75 :         thread->latency_late = 0;
 2659 tgl@sss.pgh.pa.us        7298                 :             75 :         initStats(&thread->stats, 0);
                               7299                 :                : 
 3208 heikki.linnakangas@i     7300                 :             75 :         nclients_dealt += thread->nstate;
                               7301                 :                :     }
                               7302                 :                : 
                               7303                 :                :     /* all clients must be assigned to a thread */
                               7304         [ -  + ]:             74 :     Assert(nclients_dealt == nclients);
                               7305                 :                : 
                               7306                 :                :     /* get start up time for the whole computation */
 1131 tmunro@postgresql.or     7307                 :             74 :     start_time = pg_time_now();
                               7308                 :                : 
                               7309                 :                :     /* set alarm if duration is specified. */
 5368 ishii@postgresql.org     7310         [ -  + ]:             74 :     if (duration > 0)
 5368 ishii@postgresql.org     7311                 :UBC           0 :         setalarm(duration);
                               7312                 :                : 
 1131 tmunro@postgresql.or     7313                 :CBC          74 :     errno = THREAD_BARRIER_INIT(&barrier, nthreads);
                               7314         [ -  + ]:             74 :     if (errno != 0)
  737 tgl@sss.pgh.pa.us        7315                 :UBC           0 :         pg_fatal("could not initialize barrier: %m");
                               7316                 :                : 
                               7317                 :                :     /* start all threads but thread 0 which is executed directly later */
 1131 tmunro@postgresql.or     7318         [ +  + ]:CBC          75 :     for (i = 1; i < nthreads; i++)
                               7319                 :                :     {
 4753 bruce@momjian.us         7320                 :GBC           1 :         TState     *thread = &threads[i];
                               7321                 :                : 
 1131 tmunro@postgresql.or     7322                 :              1 :         thread->create_time = pg_time_now();
                               7323                 :              1 :         errno = THREAD_CREATE(&thread->thread, threadRun, thread);
                               7324                 :                : 
                               7325         [ -  + ]:              1 :         if (errno != 0)
  737 tgl@sss.pgh.pa.us        7326                 :UBC           0 :             pg_fatal("could not create thread: %m");
                               7327                 :                :     }
                               7328                 :                : 
                               7329                 :                :     /* compute when to stop */
 1131 tmunro@postgresql.or     7330                 :CBC          74 :     threads[0].create_time = pg_time_now();
 2958 rhaas@postgresql.org     7331         [ -  + ]:             74 :     if (duration > 0)
 1131 tmunro@postgresql.or     7332                 :UBC           0 :         end_time = threads[0].create_time + (int64) 1000000 * duration;
                               7333                 :                : 
                               7334                 :                :     /* run thread 0 directly */
 1131 tmunro@postgresql.or     7335                 :CBC          74 :     (void) threadRun(&threads[0]);
                               7336                 :                : 
                               7337                 :                :     /* wait for other threads and accumulate results */
 2659 tgl@sss.pgh.pa.us        7338                 :             73 :     initStats(&stats, 0);
 1131 tmunro@postgresql.or     7339                 :             73 :     conn_total_duration = 0;
                               7340                 :                : 
 5368 ishii@postgresql.org     7341         [ +  + ]:            146 :     for (i = 0; i < nthreads; i++)
                               7342                 :                :     {
 3208 heikki.linnakangas@i     7343                 :             73 :         TState     *thread = &threads[i];
                               7344                 :                : 
 1131 tmunro@postgresql.or     7345         [ -  + ]:             73 :         if (i > 0)
 1131 tmunro@postgresql.or     7346                 :UBC           0 :             THREAD_JOIN(thread->thread);
                               7347                 :                : 
 2014 peter_e@gmx.net          7348         [ +  + ]:CBC         181 :         for (int j = 0; j < thread->nstate; j++)
  928 fujii@postgresql.org     7349         [ +  + ]:            108 :             if (thread->state[j].state != CSTATE_FINISHED)
 2014 peter_e@gmx.net          7350                 :             47 :                 exit_code = 2;
                               7351                 :                : 
                               7352                 :                :         /* aggregate thread level stats */
 2998 alvherre@alvh.no-ip.     7353                 :             73 :         mergeSimpleStats(&stats.latency, &thread->stats.latency);
                               7354                 :             73 :         mergeSimpleStats(&stats.lag, &thread->stats.lag);
                               7355                 :             73 :         stats.cnt += thread->stats.cnt;
                               7356                 :             73 :         stats.skipped += thread->stats.skipped;
  753 ishii@postgresql.org     7357                 :             73 :         stats.retries += thread->stats.retries;
                               7358                 :             73 :         stats.retried += thread->stats.retried;
                               7359                 :             73 :         stats.serialization_failures += thread->stats.serialization_failures;
                               7360                 :             73 :         stats.deadlock_failures += thread->stats.deadlock_failures;
 3163 heikki.linnakangas@i     7361                 :             73 :         latency_late += thread->latency_late;
 1131 tmunro@postgresql.or     7362                 :             73 :         conn_total_duration += thread->conn_duration;
                               7363                 :                : 
                               7364                 :                :         /* first recorded benchmarking start time */
                               7365   [ -  +  -  - ]:             73 :         if (bench_start == 0 || thread->bench_start < bench_start)
                               7366                 :             73 :             bench_start = thread->bench_start;
                               7367                 :                :     }
                               7368                 :                : 
                               7369                 :                :     /*
                               7370                 :                :      * All connections should be already closed in threadRun(), so this
                               7371                 :                :      * disconnect_all() will be a no-op, but clean up the connections just to
                               7372                 :                :      * be sure. We don't need to measure the disconnection delays here.
                               7373                 :                :      */
 5368 ishii@postgresql.org     7374                 :             73 :     disconnect_all(state, nclients);
                               7375                 :                : 
                               7376                 :                :     /*
                               7377                 :                :      * Beware that performance of short benchmarks with many threads and
                               7378                 :                :      * possibly long transactions can be deceptive because threads do not
                               7379                 :                :      * start and finish at the exact same time. The total duration computed
                               7380                 :                :      * here encompasses all transactions so that tps shown is somehow slightly
                               7381                 :                :      * underestimated.
                               7382                 :                :      */
 1131 tmunro@postgresql.or     7383                 :             73 :     printResults(&stats, pg_time_now() - bench_start, conn_total_duration,
                               7384                 :                :                  bench_start - start_time, latency_late);
                               7385                 :                : 
                               7386                 :             73 :     THREAD_BARRIER_DESTROY(&barrier);
                               7387                 :                : 
 2014 peter_e@gmx.net          7388         [ +  + ]:             73 :     if (exit_code != 0)
  737 tgl@sss.pgh.pa.us        7389                 :             47 :         pg_log_error("Run was aborted; the above results are incomplete.");
                               7390                 :                : 
 2014 peter_e@gmx.net          7391                 :             73 :     return exit_code;
                               7392                 :                : }
                               7393                 :                : 
                               7394                 :                : static THREAD_FUNC_RETURN_TYPE THREAD_FUNC_CC
 5368 ishii@postgresql.org     7395                 :             75 : threadRun(void *arg)
                               7396                 :                : {
                               7397                 :             75 :     TState     *thread = (TState *) arg;
                               7398                 :             75 :     CState     *state = thread->state;
                               7399                 :                :     pg_time_usec_t start;
                               7400                 :             75 :     int         nstate = thread->nstate;
 2489 tgl@sss.pgh.pa.us        7401                 :             75 :     int         remains = nstate;   /* number of remaining clients */
 2029                          7402                 :             75 :     socket_set *sockets = alloc_socket_set(nstate);
                               7403                 :                :     int64       thread_start,
                               7404                 :                :                 last_report,
                               7405                 :                :                 next_report;
                               7406                 :                :     StatsData   last,
                               7407                 :                :                 aggs;
                               7408                 :                : 
                               7409                 :                :     /* open log file if requested */
 5136 itagaki.takahiro@gma     7410         [ +  + ]:             75 :     if (use_log)
                               7411                 :                :     {
                               7412                 :                :         char        logpath[MAXPGPATH];
 2660 tgl@sss.pgh.pa.us        7413         [ +  - ]:              2 :         char       *prefix = logfile_prefix ? logfile_prefix : "pgbench_log";
                               7414                 :                : 
 5136 itagaki.takahiro@gma     7415         [ +  - ]:              2 :         if (thread->tid == 0)
 2713 rhaas@postgresql.org     7416                 :              2 :             snprintf(logpath, sizeof(logpath), "%s.%d", prefix, main_pid);
                               7417                 :                :         else
 2713 rhaas@postgresql.org     7418                 :UBC           0 :             snprintf(logpath, sizeof(logpath), "%s.%d.%d", prefix, main_pid, thread->tid);
                               7419                 :                : 
 2984 alvherre@alvh.no-ip.     7420                 :CBC           2 :         thread->logfile = fopen(logpath, "w");
                               7421                 :                : 
                               7422         [ -  + ]:              2 :         if (thread->logfile == NULL)
  737 tgl@sss.pgh.pa.us        7423                 :UBC           0 :             pg_fatal("could not open logfile \"%s\": %m", logpath);
                               7424                 :                :     }
                               7425                 :                : 
                               7426                 :                :     /* explicitly initialize the state machines */
 1131 tmunro@postgresql.or     7427         [ +  + ]:CBC         185 :     for (int i = 0; i < nstate; i++)
                               7428                 :            110 :         state[i].state = CSTATE_CHOOSE_SCRIPT;
                               7429                 :                : 
                               7430                 :                :     /* READY */
                               7431                 :             75 :     THREAD_BARRIER_WAIT(&barrier);
                               7432                 :                : 
                               7433                 :             75 :     thread_start = pg_time_now();
                               7434                 :             75 :     thread->started_time = thread_start;
  958 fujii@postgresql.org     7435                 :             75 :     thread->conn_duration = 0;
 1131 tmunro@postgresql.or     7436                 :             75 :     last_report = thread_start;
                               7437                 :             75 :     next_report = last_report + (int64) 1000000 * progress;
                               7438                 :                : 
                               7439                 :                :     /* STEADY */
 5136 itagaki.takahiro@gma     7440         [ +  + ]:             75 :     if (!is_connect)
                               7441                 :                :     {
                               7442                 :                :         /* make connections to the database before starting */
 1131 tmunro@postgresql.or     7443         [ +  + ]:            176 :         for (int i = 0; i < nstate; i++)
                               7444                 :                :         {
 5368 ishii@postgresql.org     7445         [ -  + ]:            103 :             if ((state[i].con = doConnect()) == NULL)
                               7446                 :                :             {
                               7447                 :                :                 /* coldly abort on initial connection failure */
  737 tgl@sss.pgh.pa.us        7448                 :UBC           0 :                 pg_fatal("could not create connection for client %d",
                               7449                 :                :                          state[i].id);
                               7450                 :                :             }
                               7451                 :                :         }
                               7452                 :                :     }
                               7453                 :                : 
                               7454                 :                :     /* GO */
 1131 tmunro@postgresql.or     7455                 :CBC          75 :     THREAD_BARRIER_WAIT(&barrier);
                               7456                 :                : 
                               7457                 :             75 :     start = pg_time_now();
                               7458                 :             75 :     thread->bench_start = start;
                               7459                 :             75 :     thread->throttle_trigger = start;
                               7460                 :                : 
                               7461                 :                :     /*
                               7462                 :                :      * The log format currently has Unix epoch timestamps with whole numbers
                               7463                 :                :      * of seconds.  Round the first aggregate's start time down to the nearest
                               7464                 :                :      * Unix epoch second (the very first aggregate might really have started a
                               7465                 :                :      * fraction of a second later, but later aggregates are measured from the
                               7466                 :                :      * whole number time that is actually logged).
                               7467                 :                :      */
 1008                          7468                 :             75 :     initStats(&aggs, (start + epoch_shift) / 1000000 * 1000000);
 1131                          7469                 :             75 :     last = aggs;
                               7470                 :                : 
                               7471                 :                :     /* loop till all clients have terminated */
 5368 ishii@postgresql.org     7472         [ +  + ]:          15135 :     while (remains > 0)
                               7473                 :                :     {
                               7474                 :                :         int         nsocks;     /* number of sockets to be waited for */
                               7475                 :                :         pg_time_usec_t min_usec;
 1131 tmunro@postgresql.or     7476                 :          15062 :         pg_time_usec_t now = 0; /* set this only if needed */
                               7477                 :                : 
                               7478                 :                :         /*
                               7479                 :                :          * identify which client sockets should be checked for input, and
                               7480                 :                :          * compute the nearest time (if any) at which we need to wake up.
                               7481                 :                :          */
 2029 tgl@sss.pgh.pa.us        7482                 :          15062 :         clear_socket_set(sockets);
                               7483                 :          15062 :         nsocks = 0;
 3300 andres@anarazel.de       7484                 :          15062 :         min_usec = PG_INT64_MAX;
 1131 tmunro@postgresql.or     7485         [ +  + ]:          67945 :         for (int i = 0; i < nstate; i++)
                               7486                 :                :         {
 5368 ishii@postgresql.org     7487                 :          59300 :             CState     *st = &state[i];
                               7488                 :                : 
 1971 alvherre@alvh.no-ip.     7489   [ +  +  -  + ]:          59300 :             if (st->state == CSTATE_SLEEP || st->state == CSTATE_THROTTLE)
 3918 ishii@postgresql.org     7490                 :              3 :             {
                               7491                 :                :                 /* a nap from the script, or under throttling */
                               7492                 :                :                 pg_time_usec_t this_usec;
                               7493                 :                : 
                               7494                 :                :                 /* get current time if needed */
 1131 tmunro@postgresql.or     7495                 :              3 :                 pg_time_now_lazy(&now);
                               7496                 :                : 
                               7497                 :                :                 /* min_usec should be the minimum delay across all clients */
 2757 heikki.linnakangas@i     7498                 :              6 :                 this_usec = (st->state == CSTATE_SLEEP ?
 1131 tmunro@postgresql.or     7499         [ +  - ]:              3 :                              st->sleep_until : st->txn_scheduled) - now;
 2757 heikki.linnakangas@i     7500         [ +  - ]:              3 :                 if (min_usec > this_usec)
                               7501                 :              3 :                     min_usec = this_usec;
                               7502                 :                :             }
  753 ishii@postgresql.org     7503         [ +  + ]:          59297 :             else if (st->state == CSTATE_WAIT_RESULT ||
                               7504         [ -  + ]:           9450 :                      st->state == CSTATE_WAIT_ROLLBACK_RESULT)
 5368                          7505                 :          49847 :             {
                               7506                 :                :                 /*
                               7507                 :                :                  * waiting for result from server - nothing to do unless the
                               7508                 :                :                  * socket is readable
                               7509                 :                :                  */
 2757 tgl@sss.pgh.pa.us        7510                 :          49847 :                 int         sock = PQsocket(st->con);
                               7511                 :                : 
      heikki.linnakangas@i     7512         [ -  + ]:          49847 :                 if (sock < 0)
                               7513                 :                :                 {
 1558 peter@eisentraut.org     7514                 :UBC           0 :                     pg_log_error("invalid socket: %s", PQerrorMessage(st->con));
 2757 heikki.linnakangas@i     7515                 :              0 :                     goto done;
                               7516                 :                :                 }
                               7517                 :                : 
 2029 tgl@sss.pgh.pa.us        7518                 :CBC       49847 :                 add_socket_to_set(sockets, sock, nsocks++);
                               7519                 :                :             }
 2757                          7520         [ +  - ]:           9450 :             else if (st->state != CSTATE_ABORTED &&
                               7521         [ +  + ]:           9450 :                      st->state != CSTATE_FINISHED)
                               7522                 :                :             {
                               7523                 :                :                 /*
                               7524                 :                :                  * This client thread is ready to do something, so we don't
                               7525                 :                :                  * want to wait.  No need to examine additional clients.
                               7526                 :                :                  */
      heikki.linnakangas@i     7527                 :           6417 :                 min_usec = 0;
                               7528                 :           6417 :                 break;
                               7529                 :                :             }
                               7530                 :                :         }
                               7531                 :                : 
                               7532                 :                :         /* also wake up to print the next progress report on time */
 3172 andres@anarazel.de       7533   [ -  +  -  -  :          15062 :         if (progress && min_usec > 0 && thread->tid == 0)
                                              -  - ]
                               7534                 :                :         {
 1131 tmunro@postgresql.or     7535                 :UBC           0 :             pg_time_now_lazy(&now);
                               7536                 :                : 
                               7537         [ #  # ]:              0 :             if (now >= next_report)
 3208 heikki.linnakangas@i     7538                 :              0 :                 min_usec = 0;
 1131 tmunro@postgresql.or     7539         [ #  # ]:              0 :             else if ((next_report - now) < min_usec)
                               7540                 :              0 :                 min_usec = next_report - now;
                               7541                 :                :         }
                               7542                 :                : 
                               7543                 :                :         /*
                               7544                 :                :          * If no clients are ready to execute actions, sleep until we receive
                               7545                 :                :          * data on some client socket or the timeout (if any) elapses.
                               7546                 :                :          */
 2387 heikki.linnakangas@i     7547         [ +  + ]:CBC       15062 :         if (min_usec > 0)
                               7548                 :                :         {
 2029 tgl@sss.pgh.pa.us        7549                 :           8645 :             int         rc = 0;
                               7550                 :                : 
 3300 andres@anarazel.de       7551         [ +  + ]:           8645 :             if (min_usec != PG_INT64_MAX)
                               7552                 :                :             {
 2029 tgl@sss.pgh.pa.us        7553         [ -  + ]:              3 :                 if (nsocks > 0)
                               7554                 :                :                 {
 2029 tgl@sss.pgh.pa.us        7555                 :UBC           0 :                     rc = wait_on_socket_set(sockets, min_usec);
                               7556                 :                :                 }
                               7557                 :                :                 else            /* nothing active, simple sleep */
                               7558                 :                :                 {
 2387 heikki.linnakangas@i     7559                 :CBC           3 :                     pg_usleep(min_usec);
                               7560                 :                :                 }
                               7561                 :                :             }
                               7562                 :                :             else                /* no explicit delay, wait without timeout */
                               7563                 :                :             {
 2029 tgl@sss.pgh.pa.us        7564                 :           8642 :                 rc = wait_on_socket_set(sockets, 0);
                               7565                 :                :             }
                               7566                 :                : 
                               7567         [ -  + ]:           8644 :             if (rc < 0)
                               7568                 :                :             {
 6772 ishii@postgresql.org     7569         [ #  # ]:UBC           0 :                 if (errno == EINTR)
                               7570                 :                :                 {
                               7571                 :                :                     /* On EINTR, go back to top of loop */
                               7572                 :              0 :                     continue;
                               7573                 :                :                 }
                               7574                 :                :                 /* must be something wrong */
  928 fujii@postgresql.org     7575                 :              0 :                 pg_log_error("%s() failed: %m", SOCKET_WAIT_METHOD);
 5368 ishii@postgresql.org     7576                 :              0 :                 goto done;
                               7577                 :                :             }
                               7578                 :                :         }
                               7579                 :                :         else
                               7580                 :                :         {
                               7581                 :                :             /* min_usec <= 0, i.e. something needs to be executed now */
                               7582                 :                : 
                               7583                 :                :             /* If we didn't wait, don't try to read any data */
 2029 tgl@sss.pgh.pa.us        7584                 :CBC        6417 :             clear_socket_set(sockets);
                               7585                 :                :         }
                               7586                 :                : 
                               7587                 :                :         /* ok, advance the state machine of each connection */
                               7588                 :          15061 :         nsocks = 0;
 1131 tmunro@postgresql.or     7589         [ +  + ]:          87597 :         for (int i = 0; i < nstate; i++)
                               7590                 :                :         {
 5368 ishii@postgresql.org     7591                 :          72537 :             CState     *st = &state[i];
                               7592                 :                : 
  753                          7593         [ +  + ]:          72537 :             if (st->state == CSTATE_WAIT_RESULT ||
                               7594         [ -  + ]:          10996 :                 st->state == CSTATE_WAIT_ROLLBACK_RESULT)
 8768 bruce@momjian.us         7595                 :          10081 :             {
                               7596                 :                :                 /* don't call advanceConnectionState unless data is available */
 2981 alvherre@alvh.no-ip.     7597                 :          61541 :                 int         sock = PQsocket(st->con);
                               7598                 :                : 
                               7599         [ -  + ]:          61541 :                 if (sock < 0)
                               7600                 :                :                 {
 1558 peter@eisentraut.org     7601                 :UBC           0 :                     pg_log_error("invalid socket: %s", PQerrorMessage(st->con));
 2981 alvherre@alvh.no-ip.     7602                 :              0 :                     goto done;
                               7603                 :                :                 }
                               7604                 :                : 
 2029 tgl@sss.pgh.pa.us        7605         [ +  + ]:CBC       61541 :                 if (!socket_has_input(sockets, sock, nsocks++))
 2757                          7606                 :          51460 :                     continue;
                               7607                 :                :             }
                               7608         [ +  + ]:          10996 :             else if (st->state == CSTATE_FINISHED ||
                               7609         [ -  + ]:           7486 :                      st->state == CSTATE_ABORTED)
                               7610                 :                :             {
                               7611                 :                :                 /* this client is done, no need to consider it anymore */
                               7612                 :           3510 :                 continue;
                               7613                 :                :             }
                               7614                 :                : 
 1971 alvherre@alvh.no-ip.     7615                 :          17567 :             advanceConnectionState(thread, st, &aggs);
                               7616                 :                : 
                               7617                 :                :             /*
                               7618                 :                :              * If --exit-on-abort is used, the program is going to exit when
                               7619                 :                :              * any client is aborted.
                               7620                 :                :              */
  228 ishii@postgresql.org     7621   [ +  +  +  + ]:GNC       17567 :             if (exit_on_abort && st->state == CSTATE_ABORTED)
                               7622                 :              1 :                 goto done;
                               7623                 :                : 
                               7624                 :                :             /*
                               7625                 :                :              * If advanceConnectionState changed client to finished state,
                               7626                 :                :              * that's one fewer client that remains.
                               7627                 :                :              */
                               7628         [ +  + ]:          17566 :             else if (st->state == CSTATE_FINISHED ||
                               7629         [ +  + ]:          17505 :                      st->state == CSTATE_ABORTED)
 2757 tgl@sss.pgh.pa.us        7630                 :CBC         108 :                 remains--;
                               7631                 :                :         }
                               7632                 :                : 
                               7633                 :                :         /* progress report is made by thread 0 for all threads */
 3924 ishii@postgresql.org     7634   [ -  +  -  - ]:          15060 :         if (progress && thread->tid == 0)
                               7635                 :                :         {
  556 drowley@postgresql.o     7636                 :UBC           0 :             pg_time_usec_t now2 = pg_time_now();
                               7637                 :                : 
                               7638         [ #  # ]:              0 :             if (now2 >= next_report)
                               7639                 :                :             {
                               7640                 :                :                 /*
                               7641                 :                :                  * Horrible hack: this relies on the thread pointer we are
                               7642                 :                :                  * passed to be equivalent to threads[0], that is the first
                               7643                 :                :                  * entry of the threads array.  That is why this MUST be done
                               7644                 :                :                  * by thread 0 and not any other.
                               7645                 :                :                  */
                               7646                 :              0 :                 printProgressReport(thread, thread_start, now2,
                               7647                 :                :                                     &last, &last_report);
                               7648                 :                : 
                               7649                 :                :                 /*
                               7650                 :                :                  * Ensure that the next report is in the future, in case
                               7651                 :                :                  * pgbench/postgres got stuck somewhere.
                               7652                 :                :                  */
                               7653                 :                :                 do
                               7654                 :                :                 {
 1131 tmunro@postgresql.or     7655                 :              0 :                     next_report += (int64) 1000000 * progress;
  556 drowley@postgresql.o     7656         [ #  # ]:              0 :                 } while (now2 >= next_report);
                               7657                 :                :             }
                               7658                 :                :         }
                               7659                 :                :     }
                               7660                 :                : 
 5368 ishii@postgresql.org     7661                 :CBC          73 : done:
  228 ishii@postgresql.org     7662         [ +  + ]:GNC          74 :     if (exit_on_abort)
                               7663                 :                :     {
                               7664                 :                :         /*
                               7665                 :                :          * Abort if any client is not finished, meaning some error occurred.
                               7666                 :                :          */
                               7667         [ +  - ]:              1 :         for (int i = 0; i < nstate; i++)
                               7668                 :                :         {
                               7669         [ +  - ]:              1 :             if (state[i].state != CSTATE_FINISHED)
                               7670                 :                :             {
                               7671                 :              1 :                 pg_log_error("Run was aborted due to an error in thread %d",
                               7672                 :                :                              thread->tid);
                               7673                 :              1 :                 exit(2);
                               7674                 :                :             }
                               7675                 :                :         }
                               7676                 :                :     }
                               7677                 :                : 
 5368 ishii@postgresql.org     7678                 :CBC          73 :     disconnect_all(state, nstate);
                               7679                 :                : 
 2984 alvherre@alvh.no-ip.     7680         [ +  + ]:             73 :     if (thread->logfile)
                               7681                 :                :     {
 2659 tgl@sss.pgh.pa.us        7682         [ -  + ]:              2 :         if (agg_interval > 0)
                               7683                 :                :         {
                               7684                 :                :             /* log aggregated but not yet reported transactions */
 2659 tgl@sss.pgh.pa.us        7685                 :UBC           0 :             doLog(thread, state, &aggs, false, 0, 0);
                               7686                 :                :         }
 2984 alvherre@alvh.no-ip.     7687                 :CBC           2 :         fclose(thread->logfile);
 2659 tgl@sss.pgh.pa.us        7688                 :              2 :         thread->logfile = NULL;
                               7689                 :                :     }
 2029                          7690                 :             73 :     free_socket_set(sockets);
 1131 tmunro@postgresql.or     7691                 :             73 :     THREAD_FUNC_RETURN;
                               7692                 :                : }
                               7693                 :                : 
                               7694                 :                : static void
 2236 andres@anarazel.de       7695                 :            435 : finishCon(CState *st)
                               7696                 :                : {
                               7697         [ +  + ]:            435 :     if (st->con != NULL)
                               7698                 :                :     {
                               7699                 :            212 :         PQfinish(st->con);
                               7700                 :            212 :         st->con = NULL;
                               7701                 :                :     }
                               7702                 :            435 : }
                               7703                 :                : 
                               7704                 :                : /*
                               7705                 :                :  * Support for duration option: set timer_exceeded after so many seconds.
                               7706                 :                :  */
                               7707                 :                : 
                               7708                 :                : #ifndef WIN32
                               7709                 :                : 
                               7710                 :                : static void
 5694 tgl@sss.pgh.pa.us        7711                 :UBC           0 : handle_sig_alarm(SIGNAL_ARGS)
                               7712                 :                : {
                               7713                 :              0 :     timer_exceeded = true;
                               7714                 :              0 : }
                               7715                 :                : 
                               7716                 :                : static void
                               7717                 :              0 : setalarm(int seconds)
                               7718                 :                : {
                               7719                 :              0 :     pqsignal(SIGALRM, handle_sig_alarm);
                               7720                 :              0 :     alarm(seconds);
                               7721                 :              0 : }
                               7722                 :                : 
                               7723                 :                : #else                           /* WIN32 */
                               7724                 :                : 
                               7725                 :                : static VOID CALLBACK
                               7726                 :                : win32_timer_callback(PVOID lpParameter, BOOLEAN TimerOrWaitFired)
                               7727                 :                : {
                               7728                 :                :     timer_exceeded = true;
                               7729                 :                : }
                               7730                 :                : 
                               7731                 :                : static void
                               7732                 :                : setalarm(int seconds)
                               7733                 :                : {
                               7734                 :                :     HANDLE      queue;
                               7735                 :                :     HANDLE      timer;
                               7736                 :                : 
                               7737                 :                :     /* This function will be called at most once, so we can cheat a bit. */
                               7738                 :                :     queue = CreateTimerQueue();
                               7739                 :                :     if (seconds > ((DWORD) -1) / 1000 ||
                               7740                 :                :         !CreateTimerQueueTimer(&timer, queue,
                               7741                 :                :                                win32_timer_callback, NULL, seconds * 1000, 0,
                               7742                 :                :                                WT_EXECUTEINTIMERTHREAD | WT_EXECUTEONLYONCE))
                               7743                 :                :         pg_fatal("failed to set timer");
                               7744                 :                : }
                               7745                 :                : 
                               7746                 :                : #endif                          /* WIN32 */
                               7747                 :                : 
                               7748                 :                : 
                               7749                 :                : /*
                               7750                 :                :  * These functions provide an abstraction layer that hides the syscall
                               7751                 :                :  * we use to wait for input on a set of sockets.
                               7752                 :                :  *
                               7753                 :                :  * Currently there are two implementations, based on ppoll(2) and select(2).
                               7754                 :                :  * ppoll() is preferred where available due to its typically higher ceiling
                               7755                 :                :  * on the number of usable sockets.  We do not use the more-widely-available
                               7756                 :                :  * poll(2) because it only offers millisecond timeout resolution, which could
                               7757                 :                :  * be problematic with high --rate settings.
                               7758                 :                :  *
                               7759                 :                :  * Function APIs:
                               7760                 :                :  *
                               7761                 :                :  * alloc_socket_set: allocate an empty socket set with room for up to
                               7762                 :                :  *      "count" sockets.
                               7763                 :                :  *
                               7764                 :                :  * free_socket_set: deallocate a socket set.
                               7765                 :                :  *
                               7766                 :                :  * clear_socket_set: reset a socket set to empty.
                               7767                 :                :  *
                               7768                 :                :  * add_socket_to_set: add socket with indicated FD to slot "idx" in the
                               7769                 :                :  *      socket set.  Slots must be filled in order, starting with 0.
                               7770                 :                :  *
                               7771                 :                :  * wait_on_socket_set: wait for input on any socket in set, or for timeout
                               7772                 :                :  *      to expire.  timeout is measured in microseconds; 0 means wait forever.
                               7773                 :                :  *      Returns result code of underlying syscall (>=0 if OK, else see errno).
                               7774                 :                :  *
                               7775                 :                :  * socket_has_input: after waiting, call this to see if given socket has
                               7776                 :                :  *      input.  fd and idx parameters should match some previous call to
                               7777                 :                :  *      add_socket_to_set.
                               7778                 :                :  *
                               7779                 :                :  * Note that wait_on_socket_set destructively modifies the state of the
                               7780                 :                :  * socket set.  After checking for input, caller must apply clear_socket_set
                               7781                 :                :  * and add_socket_to_set again before waiting again.
                               7782                 :                :  */
                               7783                 :                : 
                               7784                 :                : #ifdef POLL_USING_PPOLL
                               7785                 :                : 
                               7786                 :                : static socket_set *
 2029 tgl@sss.pgh.pa.us        7787                 :CBC          75 : alloc_socket_set(int count)
                               7788                 :                : {
                               7789                 :                :     socket_set *sa;
                               7790                 :                : 
                               7791                 :             75 :     sa = (socket_set *) pg_malloc0(offsetof(socket_set, pollfds) +
                               7792                 :                :                                    sizeof(struct pollfd) * count);
                               7793                 :             75 :     sa->maxfds = count;
                               7794                 :             75 :     sa->curfds = 0;
                               7795                 :             75 :     return sa;
                               7796                 :                : }
                               7797                 :                : 
                               7798                 :                : static void
                               7799                 :             73 : free_socket_set(socket_set *sa)
                               7800                 :                : {
                               7801                 :             73 :     pg_free(sa);
                               7802                 :             73 : }
                               7803                 :                : 
                               7804                 :                : static void
                               7805                 :          21479 : clear_socket_set(socket_set *sa)
                               7806                 :                : {
                               7807                 :          21479 :     sa->curfds = 0;
                               7808                 :          21479 : }
                               7809                 :                : 
                               7810                 :                : static void
                               7811                 :          49847 : add_socket_to_set(socket_set *sa, int fd, int idx)
                               7812                 :                : {
                               7813   [ +  -  +  - ]:          49847 :     Assert(idx < sa->maxfds && idx == sa->curfds);
                               7814                 :          49847 :     sa->pollfds[idx].fd = fd;
                               7815                 :          49847 :     sa->pollfds[idx].events = POLLIN;
                               7816                 :          49847 :     sa->pollfds[idx].revents = 0;
                               7817                 :          49847 :     sa->curfds++;
                               7818                 :          49847 : }
                               7819                 :                : 
                               7820                 :                : static int
                               7821                 :           8642 : wait_on_socket_set(socket_set *sa, int64 usecs)
                               7822                 :                : {
                               7823         [ -  + ]:           8642 :     if (usecs > 0)
                               7824                 :                :     {
                               7825                 :                :         struct timespec timeout;
                               7826                 :                : 
 2029 tgl@sss.pgh.pa.us        7827                 :UBC           0 :         timeout.tv_sec = usecs / 1000000;
                               7828                 :              0 :         timeout.tv_nsec = (usecs % 1000000) * 1000;
                               7829                 :              0 :         return ppoll(sa->pollfds, sa->curfds, &timeout, NULL);
                               7830                 :                :     }
                               7831                 :                :     else
                               7832                 :                :     {
 2029 tgl@sss.pgh.pa.us        7833                 :CBC        8642 :         return ppoll(sa->pollfds, sa->curfds, NULL, NULL);
                               7834                 :                :     }
                               7835                 :                : }
                               7836                 :                : 
                               7837                 :                : static bool
                               7838                 :          61541 : socket_has_input(socket_set *sa, int fd, int idx)
                               7839                 :                : {
                               7840                 :                :     /*
                               7841                 :                :      * In some cases, threadRun will apply clear_socket_set and then try to
                               7842                 :                :      * apply socket_has_input anyway with arguments that it used before that,
                               7843                 :                :      * or might've used before that except that it exited its setup loop
                               7844                 :                :      * early.  Hence, if the socket set is empty, silently return false
                               7845                 :                :      * regardless of the parameters.  If it's not empty, we can Assert that
                               7846                 :                :      * the parameters match a previous call.
                               7847                 :                :      */
                               7848         [ +  + ]:          61541 :     if (sa->curfds == 0)
                               7849                 :          22601 :         return false;
                               7850                 :                : 
                               7851   [ +  -  +  - ]:          38940 :     Assert(idx < sa->curfds && sa->pollfds[idx].fd == fd);
                               7852                 :          38940 :     return (sa->pollfds[idx].revents & POLLIN) != 0;
                               7853                 :                : }
                               7854                 :                : 
                               7855                 :                : #endif                          /* POLL_USING_PPOLL */
                               7856                 :                : 
                               7857                 :                : #ifdef POLL_USING_SELECT
                               7858                 :                : 
                               7859                 :                : static socket_set *
                               7860                 :                : alloc_socket_set(int count)
                               7861                 :                : {
                               7862                 :                :     return (socket_set *) pg_malloc0(sizeof(socket_set));
                               7863                 :                : }
                               7864                 :                : 
                               7865                 :                : static void
                               7866                 :                : free_socket_set(socket_set *sa)
                               7867                 :                : {
                               7868                 :                :     pg_free(sa);
                               7869                 :                : }
                               7870                 :                : 
                               7871                 :                : static void
                               7872                 :                : clear_socket_set(socket_set *sa)
                               7873                 :                : {
                               7874                 :                :     FD_ZERO(&sa->fds);
                               7875                 :                :     sa->maxfd = -1;
                               7876                 :                : }
                               7877                 :                : 
                               7878                 :                : static void
                               7879                 :                : add_socket_to_set(socket_set *sa, int fd, int idx)
                               7880                 :                : {
                               7881                 :                :     /* See connect_slot() for background on this code. */
                               7882                 :                : #ifdef WIN32
                               7883                 :                :     if (sa->fds.fd_count + 1 >= FD_SETSIZE)
                               7884                 :                :     {
                               7885                 :                :         pg_log_error("too many concurrent database clients for this platform: %d",
                               7886                 :                :                      sa->fds.fd_count + 1);
                               7887                 :                :         exit(1);
                               7888                 :                :     }
                               7889                 :                : #else
                               7890                 :                :     if (fd < 0 || fd >= FD_SETSIZE)
                               7891                 :                :     {
                               7892                 :                :         pg_log_error("socket file descriptor out of range for select(): %d",
                               7893                 :                :                      fd);
                               7894                 :                :         pg_log_error_hint("Try fewer concurrent database clients.");
                               7895                 :                :         exit(1);
                               7896                 :                :     }
                               7897                 :                : #endif
                               7898                 :                :     FD_SET(fd, &sa->fds);
                               7899                 :                :     if (fd > sa->maxfd)
                               7900                 :                :         sa->maxfd = fd;
                               7901                 :                : }
                               7902                 :                : 
                               7903                 :                : static int
                               7904                 :                : wait_on_socket_set(socket_set *sa, int64 usecs)
                               7905                 :                : {
                               7906                 :                :     if (usecs > 0)
                               7907                 :                :     {
                               7908                 :                :         struct timeval timeout;
                               7909                 :                : 
                               7910                 :                :         timeout.tv_sec = usecs / 1000000;
                               7911                 :                :         timeout.tv_usec = usecs % 1000000;
                               7912                 :                :         return select(sa->maxfd + 1, &sa->fds, NULL, NULL, &timeout);
                               7913                 :                :     }
                               7914                 :                :     else
                               7915                 :                :     {
                               7916                 :                :         return select(sa->maxfd + 1, &sa->fds, NULL, NULL, NULL);
                               7917                 :                :     }
                               7918                 :                : }
                               7919                 :                : 
                               7920                 :                : static bool
                               7921                 :                : socket_has_input(socket_set *sa, int fd, int idx)
                               7922                 :                : {
                               7923                 :                :     return (FD_ISSET(fd, &sa->fds) != 0);
                               7924                 :                : }
                               7925                 :                : 
                               7926                 :                : #endif                          /* POLL_USING_SELECT */
        

Generated by: LCOV version 2.1-beta2-3-g6141622