Skip to content

Commit d44a3a4

Browse files
authored
Update README.md
1 parent 3b09052 commit d44a3a4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plpgsql_check
22
=============
33

44
This extension is a full linter for plpgsql for PostgreSQL. It leverages only the internal
5-
PostgreSQL parser/evaluator so you see exactly the errors that would occur at runtime.
5+
PostgreSQL parser/evaluator so you see exactly the errors would occur at runtime.
66
Furthermore, it parses the SQL inside your routines and finds errors not usually found during
77
the "CREATE PROCEDURE/FUNCTION" command. You can control the levels of many warnings and hints.
88
Finally, you can add PRAGAMA type markers to turn off/on many aspects allowing you to hide
@@ -172,9 +172,9 @@ You can set level of warnings via function's parameters:
172172

173173
* `anycompatiblerangetype DEFAULT 'int4range'` - an actual range type to be used when testing the anycompatible range type
174174

175-
* `without_warnings DEFAULT false` - disable all warnings (Ignores other warning parameters) ???
175+
* `without_warnings DEFAULT false` - disable all warnings (Ignores all xxxx_warning parameters, a quick override)
176176

177-
* `all_warnings DEFAULT false` - enable all warnings (Ignores other warning parameters) ???
177+
* `all_warnings DEFAULT false` - enable all warnings (Ignores other xxx_warning parameters, a quick positive)
178178

179179
* `newtable DEFAULT NULL`, `oldtable DEFAULT NULL` - the names of NEW or OLD transition
180180
tables. These parameters are required when transition tables are used in trigger functions.
@@ -280,7 +280,7 @@ or
280280

281281
# Passive mode (only recommended for development or preproduction)
282282

283-
Functions should be checked on start??? (when executed? when PG is started?) - plpgsql_check module must be loaded (via postgresql.conf).
283+
Functions can be checked upon execution - plpgsql_check module must be loaded (via postgresql.conf).
284284

285285
## Configuration Settings
286286

@@ -291,7 +291,7 @@ Functions should be checked on start??? (when executed? when PG is started?) - p
291291
plpgsql_check.show_performance_warnings = false
292292

293293
Default mode is <i>by_function</i>, that means that the enhanced check is done only in
294-
active mode - by calling the <i>plpgsql_check_function</i>. `fresh_start` means cold start (first time it is started, only???).
294+
active mode - by calling the <i>plpgsql_check_function</i>. `fresh_start` means cold start (first the function is called).
295295

296296
You can enable passive mode by
297297

@@ -443,7 +443,7 @@ access to shared memory. It depends on `shared_preload_libraries` config. When p
443443
by `shared_preload_libraries`, then it can allocate shared memory, and function's profiles are stored there.
444444
When plpgsql_check cannot to allocate shared momory, the profile is stored in session memory.
445445

446-
Due to dependencies, `shared_preload_libraries` should to contain `plpgsql` first [PAVEL]True in for Version 1.1? (or always)???
446+
Due to dependencies, `shared_preload_libraries` should to contain `plpgsql` first
447447

448448
postgres=# show shared_preload_libraries ;
449449
┌──────────────────────────┐
@@ -561,7 +561,7 @@ plpgsql_check provides two functions:
561561

562562
## Note
563563

564-
There is another very good PLpgSQL profiler - https://bitbucket.org/openscg/plprofiler (Missing) [PAVEL]??? Is this: https://github.com/glynastill/plprofiler
564+
There is another very good PLpgSQL profiler - https://github.com/glynastill/plprofiler
565565

566566
My extension is designed to be simple for use and practical. Nothing more or less.
567567

0 commit comments

Comments
 (0)