1
0
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:
Sergei Golubchik
2013-04-07 17:11:19 +02:00
parent 69ba585a1e
commit 8980e67693
3 changed files with 41 additions and 41 deletions

View File

@ -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;