From bb9c3b39cdd18af2ea37b65a7a756a746835d26d Mon Sep 17 00:00:00 2001 From: Chris Estes <106166814+ccestes@users.noreply.github.com> Date: Mon, 25 Sep 2023 11:51:19 -0400 Subject: [PATCH] fixed sentence on pragma page --- advocacy_docs/pg_extensions/spl_check/using/pragma.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advocacy_docs/pg_extensions/spl_check/using/pragma.mdx b/advocacy_docs/pg_extensions/spl_check/using/pragma.mdx index b2460c91ee4..12f21c47afe 100644 --- a/advocacy_docs/pg_extensions/spl_check/using/pragma.mdx +++ b/advocacy_docs/pg_extensions/spl_check/using/pragma.mdx @@ -2,7 +2,7 @@ title: Pragma --- -You can configure EDB SPL Check's behavior inside a checked function with a pragma function. This is an analogy of PL/SQL or ADA language of a pragma feature. PL/pgSQL doesn't support pragma, but EDB SPL Check detects functions named `spl_check_pragma` and takes options from the parameters of the function. These EDB SPL Check options are valid to add to the end of this group of statements: +You can configure EDB SPL Check's behavior inside a checked function with a pragma function. Like the pragma feature for PL/SQL or ADA languages, EDB SPL Check provides analogous pragma functionality and APIs. PL/pgSQL doesn't support pragma, but EDB SPL Check detects functions named `spl_check_pragma` and takes options from the parameters of the function. These EDB SPL Check options are valid to add to the end of this group of statements: ```sql CREATE OR REPLACE FUNCTION test()