From 3bcf09063863e7bd12084d8d67a9cc18b6f3bddf Mon Sep 17 00:00:00 2001 From: Betsy Gitelman <93718720+ebgitelman@users.noreply.github.com> Date: Tue, 19 Sep 2023 15:11:11 -0400 Subject: [PATCH] Update configuring.mdx --- advocacy_docs/pg_extensions/spl_check/configuring.mdx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/advocacy_docs/pg_extensions/spl_check/configuring.mdx b/advocacy_docs/pg_extensions/spl_check/configuring.mdx index 75ae5c56eed..2c5e20022b0 100644 --- a/advocacy_docs/pg_extensions/spl_check/configuring.mdx +++ b/advocacy_docs/pg_extensions/spl_check/configuring.mdx @@ -10,12 +10,10 @@ CREATE EXTENSION spl_check ``` You can run EDB SPL Check in active mode or passive mode. In active mode, you can run checks with API functions like `spl_check_function`. In passive mode, functions are checked when executed. - ## Active mode In active mode, start checks by running API functions like `spl_check_function`. Active mode is the default behavior for EDB SPL Check. However, you can change this mode with the `spl_check.mode` setting. See [Configuring passive mode](#configuring-passive-mode) for more information. - You can also use the functions `spl_check_package`, `spl_check_objecttype`, and `spl_check_trigger` to validate your code. See [Using EDB SPL Check](using) for more information. @@ -265,8 +263,6 @@ spl_check.show_performance_warnings = false By default, `spl_check.mode` is set to `by_function`, which means that checks are done only in active mode by using `spl_check_function`. `fresh_start` means cold start, so function's called first. - - To enable passive mode: ```sql