koyae
koyae
Since port 80 is a privileged port, regular applications cannot bind to it (that is, listen to / read traffic from it) by default under Linux. Rather than granting special...
I made some fairly minor alterations in the interest of making pgsanity easier to use. Changes include addressing #5 for both piped and file-based input, plus an edit which allows...
At least on my own system, the following passes with exit-code 0: ``` sql SELECT ' -- this is not really a comment' AS c; SELECT ' -- neither is...
For compatibility with systems which may have changed the default **LIKE**-clause escape-character, sometimes it will be specified explicitly: ``` sql SELECT * FROM information_schema WHERE table_name LIKE 'd\_%' ESCAPE '\'...
As an example, http://sqlfiddle.com/#!15/0d145/22 seems to pass through perfectly without displaying exceptions even though triggers should be firing on errors. This caused a good deal of confusion and seems counter-intuitive...