diff options
author | Christopher Jones <sixd@php.net> | 2012-10-18 17:33:51 -0700 |
---|---|---|
committer | Christopher Jones <sixd@php.net> | 2012-10-18 17:33:51 -0700 |
commit | 131dd88505d5a9588ede36b22206bf13965d9137 (patch) | |
tree | 91d1ee1f466bf4447f1f6337866a98e908311237 /ext/oci8/php_oci8_int.h | |
parent | 0da5517cb95e99e35b340be771af74cbe9811a5b (diff) | |
download | php-git-131dd88505d5a9588ede36b22206bf13965d9137.tar.gz |
Fixed bug #63265 (Add ORA-00028 to the PHP_OCI_HANDLE_ERROR macro)
Improve high availability for explicitly terminated connections.
Diffstat (limited to 'ext/oci8/php_oci8_int.h')
-rw-r--r-- | ext/oci8/php_oci8_int.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/oci8/php_oci8_int.h b/ext/oci8/php_oci8_int.h index 724e8bae56..b0d65164c5 100644 --- a/ext/oci8/php_oci8_int.h +++ b/ext/oci8/php_oci8_int.h @@ -289,6 +289,7 @@ typedef struct { /* php_oci_out_column {{{ */ zend_bailout(); \ break; \ case 22: \ + case 28: \ case 378: \ case 602: \ case 603: \ |