| 503 | |
| 504 | |
| 505 | static TABLE *open_udf_func_table(THD *thd) |
| 506 | { |
| 507 | TABLE_LIST tables; |
| 508 | tables.init_one_table(&MYSQL_SCHEMA_NAME, &MYSQL_FUNC_NAME, |
| 509 | &MYSQL_FUNC_NAME, TL_WRITE); |
| 510 | return open_ltable(thd, &tables, TL_WRITE, MYSQL_LOCK_IGNORE_TIMEOUT); |
| 511 | } |
| 512 | |
| 513 | |
| 514 | /** |
no test coverage detected