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))),