pub type QueryInput = Option<SQLQuery>;
The input query state for command translation. None at the start of a pipeline, Some(query) after processing commands.
None
Some(query)
pub enum QueryInput { None, Some(SQLQuery), }
No value.
Some value of type T.
T