You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exec(txn, "create index idx%d on t(k%d) where pk<%ld", i, i+1, 0);
160
162
}
161
163
}
164
+
165
+
if (cfg.initialSize)
166
+
{
167
+
if (cfg.useSystemTime)
168
+
{
169
+
#if PQXX_VERSION_MAJOR >= 4
170
+
con.prepare("insert", "insert into t values ($1,$2,$3,$4,$5,$6,$7,$8,$9)");
171
+
#else
172
+
con.prepare("insert", "insert into t values ($1,$2,$3,$4,$5,$6,$7,$8,$9)")("bigint")("bigint")("bigint")("bigint")("bigint")("bigint")("bigint")("bigint")("bigint");
173
+
#endif
174
+
} else {
175
+
con.prepare("insert", "insert into t (select generate_series($1::integer,$2::integer),ceil(random()*1000000000),ceil(random()*1000000000),ceil(random()*1000000000),ceil(random()*1000000000),ceil(random()*1000000000),ceil(random()*1000000000),ceil(random()*1000000000),ceil(random()*1000000000))");
0 commit comments