mysql_plugin_api/
constants.rs

1/// The MySQL version that was used as the base for this library.
2///
3/// TODO: Make MySQL version configurable
4pub const MYSQL_VERSION_ID: i32 = 80030;
5
6/// The MySQL plugin API version.
7pub const MYSQL_PLUGIN_INTERFACE_VERSION: i32 = 0x010B;
8
9/// The Handlerton versions of different releases are incompatible.
10pub const MYSQL_HANDLERTON_INTERFACE_VERSION: i32 = MYSQL_VERSION_ID << 8;