"Pau Marc Munoz Torres" <paumarc@gmail.com> writes:
> i get a lot of warnings when i try to execute a postgresql from a script
> the warrning is
> HINT: Use the escape string syntax for escapes, e.g., E'\r\n'.
set escape_string_warning = off;
or possibly
set standard_conforming_strings = on;
depending on what you are actually doing with backslashes.
regards, tom lane