2023-03-04 10:51:19 +00:00
|
|
|
///
|
2022-03-18 07:21:22 +00:00
|
|
|
/// KV /
|
2022-03-20 14:27:56 +00:00
|
|
|
/// NS /!ns{ns}
|
2022-03-18 07:21:22 +00:00
|
|
|
///
|
2022-03-20 14:27:56 +00:00
|
|
|
/// Namespace /*{ns}
|
|
|
|
/// NL /*{ns}!nl{us}
|
|
|
|
/// NT /*{ns}!nt{tk}
|
|
|
|
/// DB /*{ns}!db{db}
|
2022-03-18 07:21:22 +00:00
|
|
|
///
|
2022-03-20 14:27:56 +00:00
|
|
|
/// Database /*{ns}*{db}
|
2023-05-10 02:08:09 +00:00
|
|
|
/// AZ /*{ns}*{db}!az{az}
|
2022-03-20 14:27:56 +00:00
|
|
|
/// DL /*{ns}*{db}!dl{us}
|
|
|
|
/// DT /*{ns}*{db}!dt{tk}
|
2023-01-09 12:43:47 +00:00
|
|
|
/// PA /*{ns}*{db}!pa{pa}
|
2023-03-04 10:51:19 +00:00
|
|
|
/// SC /*{ns}*{db}!sc{sc}
|
2022-03-20 14:27:56 +00:00
|
|
|
/// TB /*{ns}*{db}!tb{tb}
|
2022-06-27 16:01:39 +00:00
|
|
|
/// LQ /*{ns}*{db}!lq{lq}
|
2022-03-18 07:21:22 +00:00
|
|
|
///
|
2022-09-25 21:56:33 +00:00
|
|
|
/// Scope /*{ns}*{db}±{sc}
|
|
|
|
/// ST /*{ns}*{db}±{sc}!st{tk}
|
|
|
|
///
|
2022-03-20 14:27:56 +00:00
|
|
|
/// Table /*{ns}*{db}*{tb}
|
|
|
|
/// EV /*{ns}*{db}*{tb}!ev{ev}
|
2023-03-04 10:51:19 +00:00
|
|
|
/// FD /*{ns}*{db}*{tb}!fd{fd}
|
|
|
|
/// FT /*{ns}*{db}*{tb}!ft{ft}
|
2022-03-20 14:27:56 +00:00
|
|
|
/// IX /*{ns}*{db}*{tb}!ix{ix}
|
|
|
|
/// LV /*{ns}*{db}*{tb}!lv{lv}
|
2022-03-18 07:21:22 +00:00
|
|
|
///
|
2022-03-20 14:27:56 +00:00
|
|
|
/// Thing /*{ns}*{db}*{tb}*{id}
|
2022-03-18 07:21:22 +00:00
|
|
|
///
|
2022-06-15 07:41:23 +00:00
|
|
|
/// Graph /*{ns}*{db}*{tb}~{id}{eg}{fk}
|
2022-03-20 14:27:56 +00:00
|
|
|
///
|
2022-06-15 07:41:23 +00:00
|
|
|
/// Index /*{ns}*{db}*{tb}¤{ix}{fd}{id}
|
2022-03-18 07:21:22 +00:00
|
|
|
///
|
2023-05-10 02:08:09 +00:00
|
|
|
pub mod az; // Stores a DEFINE ANALYZER config definition
|
2023-02-12 12:19:20 +00:00
|
|
|
pub mod database; // Stores the key prefix for all keys under a database
|
|
|
|
pub mod db; // Stores a DEFINE DATABASE config definition
|
|
|
|
pub mod dl; // Stores a DEFINE LOGIN ON DATABASE config definition
|
|
|
|
pub mod dt; // Stores a DEFINE LOGIN ON DATABASE config definition
|
|
|
|
pub mod ev; // Stores a DEFINE EVENT config definition
|
2023-03-25 19:44:03 +00:00
|
|
|
pub mod fc; // Stores a DEFINE FUNCTION config definition
|
2023-02-12 12:19:20 +00:00
|
|
|
pub mod fd; // Stores a DEFINE FIELD config definition
|
|
|
|
pub mod ft; // Stores a DEFINE TABLE AS config definition
|
|
|
|
pub mod graph; // Stores a graph edge pointer
|
|
|
|
pub mod index; // Stores an index entry
|
|
|
|
pub mod ix; // Stores a DEFINE INDEX config definition
|
|
|
|
pub mod kv; // Stores the key prefix for all keys
|
|
|
|
pub mod lq; // Stores a LIVE SELECT query definition on the database
|
|
|
|
pub mod lv; // Stores a LIVE SELECT query definition on the table
|
|
|
|
pub mod namespace; // Stores the key prefix for all keys under a namespace
|
|
|
|
pub mod nl; // Stores a DEFINE LOGIN ON NAMESPACE config definition
|
|
|
|
pub mod ns; // Stores a DEFINE NAMESPACE config definition
|
|
|
|
pub mod nt; // Stores a DEFINE TOKEN ON NAMESPACE config definition
|
|
|
|
pub mod pa; // Stores a DEFINE PARAM config definition
|
|
|
|
pub mod sc; // Stores a DEFINE SCOPE config definition
|
|
|
|
pub mod scope; // Stores the key prefix for all keys under a scope
|
|
|
|
pub mod st; // Stores a DEFINE TOKEN ON SCOPE config definition
|
|
|
|
pub mod table; // Stores the key prefix for all keys under a table
|
|
|
|
pub mod tb; // Stores a DEFINE TABLE config definition
|
|
|
|
pub mod thing; // Stores a record id
|
2023-05-12 23:40:45 +00:00
|
|
|
|
|
|
|
const CHAR_PATH: u8 = 0xb1; // ±
|
|
|
|
const CHAR_INDEX: u8 = 0xa4; // ¤
|