We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 726855d + a8fa38b commit 250f35cCopy full SHA for 250f35c
library/Zend/Db/Adapter/Pdo/Mysql.php
@@ -200,7 +200,7 @@ public function describeTable($tableName, $schemaName = null)
200
$row[$type] = 'float';
201
$precision = $matches[1];
202
$scale = $matches[2];
203
- } else if (preg_match('/^((?:big|medium|small|tiny)?int)\((\d+)\)/', $row[$type], $matches)) {
+ } else if (preg_match('/^((?:big|medium|small|tiny)?int)(?:\((\d+)\))?/', $row[$type], $matches)) {
204
$row[$type] = $matches[1];
205
// The optional argument of a MySQL int type is not precision
206
// or length; it is only a hint for display width.
0 commit comments