Skip to content

Commit

Permalink
Mark information_schema_tsql.table_constraints_internal() function as…
Browse files Browse the repository at this point in the history
… PARALLEL SAFE

Signed-off-by: Sumit Jaiswal <[email protected]>
  • Loading branch information
Sumit Jaiswal committed Dec 26, 2024
1 parent 634f8f6 commit 53408c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contrib/babelfishpg_tsql/sql/information_schema_tsql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ BEGIN
OR has_any_column_privilege(r.oid, 'SELECT, INSERT, UPDATE, REFERENCES') );
END;
$$
LANGUAGE plpgsql STABLE;
LANGUAGE plpgsql STABLE PARALLEL SAFE;

/*
* TABLE_CONSTRAINTS view
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11475,7 +11475,7 @@ BEGIN
OR has_any_column_privilege(r.oid, 'SELECT, INSERT, UPDATE, REFERENCES') );
END;
$$
LANGUAGE plpgsql STABLE;
LANGUAGE plpgsql STABLE PARALLEL SAFE;

CREATE OR REPLACE VIEW information_schema_tsql.table_constraints AS
SELECT
Expand Down

0 comments on commit 53408c5

Please sign in to comment.