Skip to content

Commit

Permalink
- Fix for bug #13592 (Patch by Markus Fischer <mfischer@guru.josefine…
Browse files Browse the repository at this point in the history
….at>)
  • Loading branch information
Derick Rethans committed Oct 8, 2001
1 parent c7239f2 commit 009b847
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ext/mysql/php_mysql.c
Expand Up @@ -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 ");
Expand Down

0 comments on commit 009b847

Please sign in to comment.