2022-06-17 22:55:09 +00:00
|
|
|
use crate::sql::part::Part;
|
|
|
|
use once_cell::sync::Lazy;
|
|
|
|
|
|
|
|
pub static ID: Lazy<[Part; 1]> = Lazy::new(|| [Part::from("id")]);
|
|
|
|
|
2022-08-17 14:09:08 +00:00
|
|
|
pub static IP: Lazy<[Part; 1]> = Lazy::new(|| [Part::from("ip")]);
|
|
|
|
|
|
|
|
pub static NS: Lazy<[Part; 1]> = Lazy::new(|| [Part::from("ns")]);
|
|
|
|
|
|
|
|
pub static DB: Lazy<[Part; 1]> = Lazy::new(|| [Part::from("db")]);
|
|
|
|
|
|
|
|
pub static SC: Lazy<[Part; 1]> = Lazy::new(|| [Part::from("sc")]);
|
|
|
|
|
2022-09-04 23:56:23 +00:00
|
|
|
pub static SD: Lazy<[Part; 1]> = Lazy::new(|| [Part::from("sd")]);
|
|
|
|
|
2022-08-17 14:09:08 +00:00
|
|
|
pub static OR: Lazy<[Part; 1]> = Lazy::new(|| [Part::from("or")]);
|
|
|
|
|
2022-09-17 01:44:39 +00:00
|
|
|
pub static TK: Lazy<[Part; 1]> = Lazy::new(|| [Part::from("tk")]);
|
|
|
|
|
2022-06-17 22:55:09 +00:00
|
|
|
pub static IN: Lazy<[Part; 1]> = Lazy::new(|| [Part::from("in")]);
|
|
|
|
|
|
|
|
pub static OUT: Lazy<[Part; 1]> = Lazy::new(|| [Part::from("out")]);
|
2022-07-16 22:22:23 +00:00
|
|
|
|
|
|
|
pub static META: Lazy<[Part; 1]> = Lazy::new(|| [Part::from("__")]);
|
2023-01-17 10:41:34 +00:00
|
|
|
|
|
|
|
pub static EDGE: Lazy<[Part; 1]> = Lazy::new(|| [Part::from("__")]);
|