Constant mariadb_sys::enum_table_category::TABLE_CATEGORY_TEMPORARY
source · pub const TABLE_CATEGORY_TEMPORARY: Type = 1;
Expand description
Temporary table. The table is visible only in the session. Therefore,
- FLUSH TABLES WITH READ LOCK
- SET GLOBAL READ_ONLY = ON do not apply to this table. Note that LOCK TABLE t FOR READ/WRITE can be used on temporary tables. Temporary tables are not part of the table cache.