Drop test query DESCRIBE test_table

Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
This commit is contained in:
Kamil Tekiela 2024-11-21 19:50:07 +00:00
parent cea4f72429
commit ad492ea0ec

View File

@ -1785,15 +1785,6 @@ class DbiDummy implements DbiExtension
'columns' => ['usergroup', 'tab', 'allowed'],
'result' => [['user<br>group', 'server_sql', 'Y']],
],
[
'query' => 'DESCRIBE `test_table`',
'columns' => ['Field', 'Type', 'Null', 'Key', 'Default', 'Extra'],
'result' => [
['id', 'int(11)', 'NO', 'PRI', 'NULL', 'auto_increment'],
['name', 'varchar(20)', 'NO', '', 'NULL', ''],
['datetimefield', 'datetime', 'NO', '', 'NULL', ''],
],
],
[
'query' => 'SELECT `name` FROM `test_table` WHERE `id` = 4',
'columns' => ['name'],