You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I try to understand why the following code fails :
(sogo-tool is a binary that accesses a PostgreSQL database)
CREATE OR REPLACE FUNCTION showSig() RETURNS text AS '
#!/bin/bash
LD_LIBRARY_PATH="/usr/local/lib:/usr/local/lib/sogo"
export LD_LIBRARY_PATH
/usr/local/sbin/sogo-tool user-preferences get defaults john.doe SOGoMailSignature
' LANGUAGE plsh;
Within psql :
SELECT showSig(); ERROR: showsig:
Directly from the shell, it works :
$ /usr/local/sbin/sogo-tool user-preferences get defaults john.doe SOGoMailSignature SOGoMailSignature: "John W. Doe - New York City - USA"
Any idea ?
The text was updated successfully, but these errors were encountered:
Hallo,
I try to understand why the following code fails :
(sogo-tool is a binary that accesses a PostgreSQL database)
CREATE OR REPLACE FUNCTION showSig() RETURNS text AS '
#!/bin/bash
LD_LIBRARY_PATH="/usr/local/lib:/usr/local/lib/sogo"
export LD_LIBRARY_PATH
/usr/local/sbin/sogo-tool user-preferences get defaults john.doe SOGoMailSignature
' LANGUAGE plsh;
Within psql :
SELECT showSig();
ERROR: showsig:
Directly from the shell, it works :
$ /usr/local/sbin/sogo-tool user-preferences get defaults john.doe SOGoMailSignature
SOGoMailSignature: "John W. Doe - New York City - USA"
Any idea ?
The text was updated successfully, but these errors were encountered: