datafusion-flight-sql-server 0.4.16

Datafusion flight sql server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[derive(Default)]
pub struct FlightSqlServiceConfig {
    /// When true, includes table names in field metadata under the "table_name" key.
    /// This allows clients to identify the source table or alias for each column in query results.
    pub schema_with_metadata: bool,
}

impl FlightSqlServiceConfig {
    pub fn new() -> Self {
        Self {
            ..Default::default()
        }
    }
}