From: Derick Rethans Date: Mon, 8 Oct 2001 06:28:16 +0000 (+0000) Subject: - Fix for bug #13592 (Patch by Markus Fischer ) X-Git-Tag: PRE_PARAMETER_PARSING_API~34 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=009b8470eb6f271ccfff7a2fdb887a7b767f07f6;p=php - Fix for bug #13592 (Patch by Markus Fischer ) --- 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 ");