mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
* use Dynamic_array<> instead of List<> for the list of found tables in sql_show.cc
* make find_files static
This commit is contained in:
@ -124,6 +124,11 @@ public:
|
||||
return (insert_dynamic(&array, (uchar*)&el));
|
||||
}
|
||||
|
||||
bool append_val(Elem el)
|
||||
{
|
||||
return (insert_dynamic(&array, (uchar*)&el));
|
||||
}
|
||||
|
||||
int elements()
|
||||
{
|
||||
return array.elements;
|
||||
|
Reference in New Issue
Block a user