diff options
author | Edin Kadribasic <edink@php.net> | 2005-02-05 22:55:23 +0000 |
---|---|---|
committer | Edin Kadribasic <edink@php.net> | 2005-02-05 22:55:23 +0000 |
commit | bf77a39349b4180ba871ee72bfdb9ba0ab7bf49f (patch) | |
tree | d03461d5ae0847b8fbce82736c9a8cb3932bd188 /ext/pdo_pgsql/pgsql_driver.c | |
parent | 64e8c3105cb1da936cabf92e66e89ef3248fbf34 (diff) | |
download | php-git-bf77a39349b4180ba871ee72bfdb9ba0ab7bf49f.tar.gz |
Decode pgsql LOB objects (bytea type) on fetch
Diffstat (limited to 'ext/pdo_pgsql/pgsql_driver.c')
-rw-r--r-- | ext/pdo_pgsql/pgsql_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_pgsql/pgsql_driver.c b/ext/pdo_pgsql/pgsql_driver.c index 2ed09c2dd7..5fc5820993 100644 --- a/ext/pdo_pgsql/pgsql_driver.c +++ b/ext/pdo_pgsql/pgsql_driver.c @@ -167,7 +167,7 @@ static long pgsql_handle_doer(pdo_dbh_t *dbh, const char *sql, long sql_len TSRM return 1; } -static int pgsql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen TSRMLS_DC) +static int pgsql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC) { *quoted = emalloc(2*unquotedlen + 3); (*quoted)[0] = '\''; |