JsonTableNamedColumn in sqlparser::ast - Rust

Struct JsonTableNamedColumn 

Source

pub struct JsonTableNamedColumn {
    pub name: Ident,
    pub type: DataType,
    pub path: Value,
    pub exists: bool,
    pub on_empty: Option<JsonTableColumnErrorHandling>,
    pub on_error: Option<JsonTableColumnErrorHandling>,
}
Expand description

The name of the column to be extracted.

The type of the column to be extracted.

The path to the column to be extracted. Must be a literal string.

true if the column is a boolean set to true if the given path exists

The empty handling clause of the column

The error handling clause of the column

§
§
§
§
§
§