From ea23680e5dc205d28ad859e2b913b9b0c36b7e61 Mon Sep 17 00:00:00 2001 From: cawcenter Date: Tue, 16 Dec 2025 11:51:44 -0500 Subject: [PATCH] Fix: Change tablename to relname in getVacuumCandidates query --- src/lib/shim/pool.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/shim/pool.ts b/src/lib/shim/pool.ts index 45f6070..0b37000 100644 --- a/src/lib/shim/pool.ts +++ b/src/lib/shim/pool.ts @@ -212,7 +212,7 @@ export async function getVacuumCandidates(): Promise( `SELECT - schemaname || '.' || tablename as table, + schemaname || '.' || relname as table, n_dead_tup as dead_tuples, n_live_tup as live_tuples, CASE