mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
Fixed bug #60718 Complie problem with libpq (PostgreSQL 7.3 or less)
This commit is contained in:
parent
55b1e61242
commit
931831bf75
@ -4807,7 +4807,9 @@ PHP_FUNCTION(pg_get_notify)
|
||||
#else
|
||||
if (atof(PG_VERSION) >= 9.0) {
|
||||
#endif
|
||||
#if HAVE_PQPARAMETERSTATUS
|
||||
add_index_string(return_value, 2, pgsql_notify->extra, 1);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
if (result_type & PGSQL_ASSOC) {
|
||||
@ -4818,7 +4820,9 @@ PHP_FUNCTION(pg_get_notify)
|
||||
#else
|
||||
if (atof(PG_VERSION) >= 9.0) {
|
||||
#endif
|
||||
#if HAVE_PQPARAMETERSTATUS
|
||||
add_assoc_string(return_value, "payload", pgsql_notify->extra, 1);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
PQfreemem(pgsql_notify);
|
||||
|
Loading…
Reference in New Issue
Block a user