v/vlib/mysql/consts.v

14 lines
374 B
V
Raw Normal View History

module mysql
2020-10-19 20:11:04 +02:00
// MYSQL REFRESH FLAGS
pub const (
2020-05-22 17:36:09 +02:00
refresh_grant = u32(C.REFRESH_GRANT)
refresh_log = u32(C.REFRESH_LOG)
refresh_tables = u32(C.REFRESH_TABLES)
refresh_hosts = u32(C.REFRESH_HOSTS)
refresh_status = u32(C.REFRESH_STATUS)
refresh_threads = u32(C.REFRESH_THREADS)
refresh_slave = u32(C.REFRESH_SLAVE)
refresh_master = u32(C.REFRESH_MASTER)
)