diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2009-11-25 14:28:00 +0000 | 
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2009-11-25 14:28:00 +0000 | 
| commit | 23f4da91137967d5769f3100ecc2e712641cf37d (patch) | |
| tree | 15b1da700cb90a78a7d03d221ce552a42270aea3 /ext/pgsql/pgsql.c | |
| parent | bf7ed5eff5a39724b59beffaa3af2fc08117f490 (diff) | |
| download | php-git-23f4da91137967d5769f3100ecc2e712641cf37d.tar.gz | |
Fixed bug #50195 (pg_copy_to() fails when table name contains schema).
Diffstat (limited to 'ext/pgsql/pgsql.c')
| -rw-r--r-- | ext/pgsql/pgsql.c | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 57fac7e26e..4b79b37c91 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -3764,7 +3764,11 @@ PHP_FUNCTION(pg_copy_to)  		pg_null_as = safe_estrdup("\\\\N");  	} -	spprintf(&query, 0, "COPY \"%s\" TO STDOUT DELIMITERS '%c' WITH NULL AS '%s'", table_name, *pg_delim, pg_null_as); +	if (memchr(table_name, '.', table_name_len)) { +		spprintf(&query, 0, "COPY %s TO STDOUT DELIMITERS '%c' WITH NULL AS '%s'", table_name, *pg_delim, pg_null_as); +	} else { +		spprintf(&query, 0, "COPY \"%s\" TO STDOUT DELIMITERS '%c' WITH NULL AS '%s'", table_name, *pg_delim, pg_null_as); +	}  	while ((pgsql_result = PQgetResult(pgsql))) {  		PQclear(pgsql_result); | 
