From 4d58cccb2bfbd71ea533b85e52e99cedd66325e2 Mon Sep 17 00:00:00 2001 From: rahulpinto19 Date: Thu, 29 Jan 2026 05:37:07 +0000 Subject: [PATCH] test --- tests/postgres/postgres_integration_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/postgres/postgres_integration_test.go b/tests/postgres/postgres_integration_test.go index 336343b429..44f4c4a3dd 100644 --- a/tests/postgres/postgres_integration_test.go +++ b/tests/postgres/postgres_integration_test.go @@ -111,11 +111,12 @@ func TestPostgres(t *testing.T) { teardownTable2 := tests.SetupPostgresSQLTable(t, ctx, pool, createAuthTableStmt, insertAuthTableStmt, tableNameAuth, authTestParams) defer teardownTable2(t) - + // Set up table for semantic search vectorTableName, tearDownVectorTable := tests.SetupPostgresVectorTable(t, ctx, pool) defer tearDownVectorTable(t) + // Write config into a file and pass it to command toolsFile := tests.GetToolsConfig(sourceConfig, PostgresToolType, paramToolStmt, idParamToolStmt, nameParamToolStmt, arrayToolStmt, authToolStmt) toolsFile = tests.AddExecuteSqlConfig(t, toolsFile, "postgres-execute-sql")