datafusion_flight_sql_server/config.rs
1#[derive(Default)]
2pub struct FlightSqlServiceConfig {
3 /// When true, includes table names in field metadata under the "table_name" key.
4 /// This allows clients to identify the source table or alias for each column in query results.
5 pub schema_with_metadata: bool,
6}
7
8impl FlightSqlServiceConfig {
9 pub fn new() -> Self {
10 Self {
11 ..Default::default()
12 }
13 }
14}