Skip to content

Commit

Permalink
Betsy feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
ccestes committed Sep 21, 2023
1 parent 74dcbd6 commit 4207d15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion advocacy_docs/pg_extensions/spl_check/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ These are some of the key features of EDB SPL Check:
- Identifies unused variables and function arguments as well as unmodified `OUT` arguments
- Partially detects dead code, that is, code after an unqualified `RETURN` command
- Detects missing `RETURN` commands in functions, which are common after exception handlers or complex logic
- Tries to identify unwanted hidden casts, which can be a performance issues like unused indexes
- Tries to identify unwanted hidden casts, which can cause performance issues like unused indexes
- Collects relations and functions used by a function
- Checks `EXECUTE` statements against SQL injection vulnerability
2 changes: 1 addition & 1 deletion advocacy_docs/pg_extensions/spl_check/using/tracer.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ To enable tracing, set `spl_check.tracer` to `on`.

As a security safeguard, we recommend that the use of the tracer be enabled by a superuser by setting `spl_check.enable_tracer` to `on` or `spl_check.enable_tracer` to `on` in `postgresql.conf`. Because the tracer shows the content of EDB SPL Check's variables, some sensitive security information can display for an unprivileged user.

We also recommend that you load the extension `spl_check`. You can execute some `spl_check` functions explicitly with `load 'spl_check';`. You can use the configuration's `shared_preload_libraries`, `local_preload_libraries`, or `session_preload_libraries` option.
We also recommend that you load the extension `spl_check`. You can execute some `spl_check` functions explicitly with `load 'spl_check';`. You can also set the configuration options in `shared_preload_libraries`, `local_preload_libraries`, or `session_preload_libraries` options to load `spl_check`.

In terse verbose mode, the output is reduced:

Expand Down

0 comments on commit 4207d15

Please sign in to comment.