MCPcopy Create free account
hub / github.com/apache/cloudberry / initVacuum

Function initVacuum

src/bin/pgbench/pgbench.c:4354–4362  ·  view source on GitHub ↗

* Invoke vacuum on the standard tables */

Source from the content-addressed store, hash-verified

4352 * Invoke vacuum on the standard tables
4353 */
4354static void
4355initVacuum(PGconn *con)
4356{
4357 fprintf(stderr, "vacuuming...\n");
4358 executeStatement(con, "vacuum analyze pgbench_branches");
4359 executeStatement(con, "vacuum analyze pgbench_tellers");
4360 executeStatement(con, "vacuum analyze pgbench_accounts");
4361 executeStatement(con, "vacuum analyze pgbench_history");
4362}
4363
4364/*
4365 * Create primary keys on the standard tables

Callers 1

runInitStepsFunction · 0.85

Calls 1

executeStatementFunction · 0.85

Tested by

no test coverage detected