Skip to content

Commit 75aa381

Browse files
committed
Final updates to PostgreSQL server
- Additional improvements to postgres_server.py - Ensure all functionality is properly implemented
1 parent c3431f6 commit 75aa381

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

postgres_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1204,7 +1204,7 @@ async def PostgreSQL_vacuum_analyze_table(table_name: str, ctx: Context, schema_
12041204

12051205
# Run VACUUM ANALYZE
12061206
vacuum_query = f"VACUUM ANALYZE {schema_name}.{table_name}"
1207-
result = await execute_non_query(vacuum_query)
1207+
await execute_non_query(vacuum_query)
12081208

12091209
# Get stats after vacuum
12101210
after_stats = await execute_query(stats_query, schema_name, table_name)

0 commit comments

Comments
 (0)