* Invoke vacuum on the standard tables */
| 4352 | * Invoke vacuum on the standard tables |
| 4353 | */ |
| 4354 | static void |
| 4355 | initVacuum(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 |
no test coverage detected