mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 10:56:27 -04:00
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
12 lines
545 B
Text
12 lines
545 B
Text
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.
|