mirror of
https://github.com/MariaDB/server.git
synced 2026-04-27 18:55:31 +02:00
Fix after merge
Updated WEEK() and DATE information in the manual. Docs/manual.texi: Updated WEEK() information. Added more information of how MySQL stores dates. libmysql/Makefile.am: Fix after merge libmysqld/lib_vio.c: Use new vio_blocking() mysql-test/r/group_by.result: Update results after merge sql/ha_innodb.cc: Fix after merge sql/lex.h: Fix after merge sql/slave.cc: Added missing include file sql/sql_base.cc: Added function comments vio/test-ssl.c: Fix after merge
This commit is contained in:
parent
267b80834a
commit
028cfaba9b
9 changed files with 109 additions and 17 deletions
|
|
@ -108,6 +108,24 @@ static void check_unused(void)
|
|||
#define check_unused()
|
||||
#endif
|
||||
|
||||
/*
|
||||
Create a list for all open tables matching SQL expression
|
||||
|
||||
SYNOPSIS
|
||||
list_open_tables()
|
||||
thd Thread THD
|
||||
wild SQL like expression
|
||||
|
||||
NOTES
|
||||
One gets only a list of tables for which one has any kind of privilege.
|
||||
db and table names are allocated in result struct, so one doesn't need
|
||||
a lock on LOCK_open when traversing the return list.
|
||||
|
||||
RETURN VALUES
|
||||
NULL Error (Probably OOM)
|
||||
# Pointer to list of names of open tables.
|
||||
*/
|
||||
|
||||
OPEN_TABLE_LIST *list_open_tables(THD *thd, const char *wild)
|
||||
{
|
||||
int result = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue