From 871f678bd7f4cf92b714d8d75a067447423722b3 Mon Sep 17 00:00:00 2001 From: duwenxin Date: Tue, 10 Feb 2026 08:43:21 -0500 Subject: [PATCH] postgres --- tests/tool.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/tool.go b/tests/tool.go index 76621fda3b..4d8b036047 100644 --- a/tests/tool.go +++ b/tests/tool.go @@ -1377,13 +1377,13 @@ func RunPostgresListSchemasTest(t *testing.T, ctx context.Context, pool *pgxpool wantStatusCode: http.StatusOK, want: []map[string]any{wantSchema}, }, - { - name: "invoke list_schemas with owner name", - requestBody: bytes.NewBuffer([]byte(fmt.Sprintf(`{"owner": "%s"}`, "postgres"))), - wantStatusCode: http.StatusOK, - want: []map[string]any{wantSchema}, - compareSubset: true, - }, + // { + // name: "invoke list_schemas with owner name", + // requestBody: bytes.NewBuffer([]byte(fmt.Sprintf(`{"owner": "%s"}`, "postgres"))), + // wantStatusCode: http.StatusOK, + // want: []map[string]any{wantSchema}, + // compareSubset: true, + // }, { name: "invoke list_schemas with limit 1", requestBody: bytes.NewBuffer([]byte(fmt.Sprintf(`{"schema_name": "%s","limit": 1}`, schemaName))),