Merge pull request #19400 from kamil-tekiela/DESCRIBE-test_table

Drop test query DESCRIBE `test_table`
This commit is contained in:
Maurício Meneghini Fauth 2024-12-04 20:18:12 -03:00 committed by GitHub
commit c5d6cd5267
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1775,15 +1775,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'],