bug #1610314, incomplete detection of binary columns

This commit is contained in:
Marc Delisle
2006-12-12 17:44:04 +00:00
parent 7e6e1a577a
commit 889d92293b
2 changed files with 2 additions and 1 deletions

View File

@@ -399,7 +399,7 @@ foreach ($loop_array AS $vrowcount => $vrow) {
<?php
// The type column
$is_binary = stristr($row_table_def['Type'], ' binary');
$is_binary = stristr($row_table_def['Type'], 'binary');
$is_blob = stristr($row_table_def['Type'], 'blob');
$is_char = stristr($row_table_def['Type'], 'char');
switch ($row_table_def['True_Type']) {