summaryrefslogtreecommitdiff
path: root/ext/pdo_pgsql/php_pdo_pgsql_int.h
diff options
context:
space:
mode:
authorMatteo Beccati <mbeccati@php.net>2014-03-09 12:14:23 +0100
committerMatteo Beccati <mbeccati@php.net>2014-03-11 23:10:48 +0100
commitd72621ab9e8a6cc89fe1005a83c16249fdc02810 (patch)
treefe600b7f09843acd2c7c08267b1de74ec8c8ecd4 /ext/pdo_pgsql/php_pdo_pgsql_int.h
parentb1ffea3ccce0e1f1a63022f446c1549dfad92e9e (diff)
downloadphp-git-d72621ab9e8a6cc89fe1005a83c16249fdc02810.tar.gz
Deprecated PDO::PGSQL_ATTR_DISABLE_NATIVE_PREPARED_STATEMENT
Diffstat (limited to 'ext/pdo_pgsql/php_pdo_pgsql_int.h')
-rw-r--r--ext/pdo_pgsql/php_pdo_pgsql_int.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/pdo_pgsql/php_pdo_pgsql_int.h b/ext/pdo_pgsql/php_pdo_pgsql_int.h
index 037344ab94..34d89d2078 100644
--- a/ext/pdo_pgsql/php_pdo_pgsql_int.h
+++ b/ext/pdo_pgsql/php_pdo_pgsql_int.h
@@ -44,10 +44,9 @@ typedef struct {
pdo_pgsql_error_info einfo;
Oid pgoid;
/* The following two variables have the same purpose. Unfortunately we need
- to keep track of two different attributes having the same effect.
- It might be worth to deprecate the driver specific one soon. */
+ to keep track of two different attributes having the same effect. */
int emulate_prepares;
- int disable_native_prepares;
+ int disable_native_prepares; /* deprecated since 5.6 */
unsigned int stmt_counter;
} pdo_pgsql_db_handle;