slackbuilds/system/pgsanity
Audrius Kažukauskas 3cf67292e0 system/pgsanity: Updated for version 0.2.8.
Signed-off-by: Audrius Kažukauskas <audrius@neutrino.lt>
2014-11-08 06:39:10 +07:00
..
README system/pgsanity: Added (SQL syntax checker for PostgreSQL). 2014-05-28 23:45:35 +07:00
pgsanity.SlackBuild system/pgsanity: Updated for version 0.2.8. 2014-11-08 06:39:10 +07:00
pgsanity.info system/pgsanity: Updated for version 0.2.8. 2014-11-08 06:39:10 +07:00
slack-desc system/pgsanity: Added (SQL syntax checker for PostgreSQL). 2014-05-28 23:45:35 +07:00

README

PgSanity checks the syntax of PostgreSQL SQL files.

It does this by leveraging the ecpg command which is traditionally used
for preparing C files with embedded SQL for compilation.  However, as
part of that preparation, ecpg checks the embedded SQL statements for
syntax errors using the exact same parser that is in PostgreSQL.

So the approach that PgSanity takes is to take a file that has a list of
bare SQL in it, make that file look like a C file with embedded SQL, run
it through ecpg and let ecpg report on the syntax errors of the SQL.