diff options
| -rw-r--r-- | ext/mysql/php_mysql.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c index f6cdd17b9d..4990607b69 100644 --- a/ext/mysql/php_mysql.c +++ b/ext/mysql/php_mysql.c @@ -1927,6 +1927,11 @@ static void php_mysql_field_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type)  				strcat(buf, "enum ");  			}  #endif +#ifdef SET_FLAG +			if (mysql_field->flags&SET_FLAG) { +				strcat(buf, "set "); +			} +#endif  #ifdef AUTO_INCREMENT_FLAG  			if (mysql_field->flags&AUTO_INCREMENT_FLAG) {  				strcat(buf, "auto_increment ");  | 
