From 6c867cb8e58c5bd37e89c94220a0f82bea3cf914 Mon Sep 17 00:00:00 2001 From: Adam Baratz Date: Thu, 20 Oct 2016 17:34:29 -0400 Subject: [PATCH] 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. --- ext/pdo/php_pdo_driver.h | 5 +---- 1 file changed, 1 insertion(+), 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 */ -- 2.50.1