Merge #18177 - Fix "IS NULL" is shown for non-nullable columns on search page
Pull-request: #18177 Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
commit
ae355d99b1
@ -157,7 +157,7 @@ class SearchController extends AbstractController
|
||||
}
|
||||
|
||||
$this->columnTypes[] = $type;
|
||||
$this->columnNullFlags[] = $row['Null'];
|
||||
$this->columnNullFlags[] = $row['Null'] === 'YES';
|
||||
$this->columnCollations[] = ! empty($row['Collation']) && $row['Collation'] !== 'NULL'
|
||||
? $row['Collation']
|
||||
: '';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user