Type Definition datafusion::common::OwnedTableReference

source ·
pub type OwnedTableReference = TableReference<'static>;
Expand description

This is a TableReference that has ’static lifetime (aka it owns the underlying string)

To convert a TableReference to an OwnedTableReference, use

let table_reference = TableReference::from("mytable");
let owned_reference = table_reference.to_owned_reference();