#[derive(Default)]pubstructFlightSqlServiceConfig{/// 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.
pubschema_with_metadata:bool,
}implFlightSqlServiceConfig{pubfnnew()->Self{Self{..Default::default()}}}