ext/pdo_pgsql: Delete unused constants

These constants were added by 6ed1819bf4 but they are not used anymore.

They are undocumented which is why I've stumbled upon this.

close GH-18358
This commit is contained in:
Jakub Vrána 2025-04-19 21:31:08 +02:00 committed by David Carlier
parent 2751064692
commit e549ccb32e
No known key found for this signature in database
GPG key ID: 8486F847B4B94EF1
6 changed files with 5 additions and 59 deletions

View file

@ -104,14 +104,6 @@ struct pdo_pgsql_lob_self {
Oid oid;
};
enum pdo_pgsql_specific_constants {
PGSQL_TRANSACTION_IDLE = PQTRANS_IDLE,
PGSQL_TRANSACTION_ACTIVE = PQTRANS_ACTIVE,
PGSQL_TRANSACTION_INTRANS = PQTRANS_INTRANS,
PGSQL_TRANSACTION_INERROR = PQTRANS_INERROR,
PGSQL_TRANSACTION_UNKNOWN = PQTRANS_UNKNOWN
};
php_stream *pdo_pgsql_create_lob_stream(zend_object *pdh, int lfd, Oid oid);
extern const php_stream_ops pdo_pgsql_lob_stream_ops;