Gilles Darold
Gilles Darold
You need to use another encoding.
Something like that should do the work: ``` find mydir/ -name '*.sql' | xargs -i pg_format -o {}.out {} ``` the formatted files will have the extension .out or if...
Version 5.6 adds a new option `--redundant-parenthesis` to disable automatic remove of redundant parenthesis.
Hi Pavel, Normally you just have to set PG_VERSION to the version of the PostgreSQL server. If you set it to 10 then PG_SUPPORTS_PROCEDURE will be disabled.
Commit 0a22650 might support overriding of the PG_VERSION automatic adjustment of these PG_SUPPORT_* variables. If they are defined in the configuration file, they take precedence onto the PG_VERSION behavior, whether...
Thanks Pavel. Commit 4d1696c might solve this issue.
Hi Pavel, Here is an Oracle function with a single out parameter and e return value: ``` function fct_test(p1 varchar, p2 out number) return number as DECLARE v1 number :=...
Note that I have fix a wrong translation of OUT to INOUT in new commit cbb61c6
With this commit an Oracle function defined as follow: ``` function fct_test(p2 out number) as BEGIN p2 := 10; END fct_test; ``` is translated into ``` CREATE OR REPLACE FUNCTION...
Fixed with #1850 if I have well understood the remaining issue here.