summaryrefslogtreecommitdiff
path: root/ext/pdo/php_pdo_driver.h
diff options
context:
space:
mode:
authorAdam Baratz <adambaratz@php.net>2016-10-20 17:34:29 -0400
committerAdam Baratz <adambaratz@php.net>2016-10-20 17:39:00 -0400
commit6c867cb8e58c5bd37e89c94220a0f82bea3cf914 (patch)
tree7ac5d5d460de5072571ff6d44ce9da1ea7892c6f /ext/pdo/php_pdo_driver.h
parent54454f73354812aaa157948ca5e829f9dac337a3 (diff)
downloadphp-git-6c867cb8e58c5bd37e89c94220a0f82bea3cf914.tar.gz
Remove DBDO-specific field
DBDO is a PECL package which hasn't been updated since 2010 and has been marked as unmaintained. Additionally, I can't find a reference to this field in the latest source.
Diffstat (limited to 'ext/pdo/php_pdo_driver.h')
-rw-r--r--ext/pdo/php_pdo_driver.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/ext/pdo/php_pdo_driver.h b/ext/pdo/php_pdo_driver.h
index f4420dcbdd..7f3acc7395 100644
--- a/ext/pdo/php_pdo_driver.h
+++ b/ext/pdo/php_pdo_driver.h
@@ -46,7 +46,7 @@ PDO_API char *php_pdo_int64_to_str(pdo_int64_t i64);
# define FALSE 0
#endif
-#define PDO_DRIVER_API 20150127
+#define PDO_DRIVER_API 20161020
enum pdo_param_type {
PDO_PARAM_NULL,
@@ -529,9 +529,6 @@ struct pdo_column_data {
size_t maxlen;
zend_ulong precision;
enum pdo_param_type param_type;
-
- /* don't touch this unless your name is dbdo */
- void *dbdo_data;
};
/* describes a bound parameter */