1 2 3 4 5 6 7
use crate::{ast::SQLStatement, pgwire::protocol::backend::FieldDescription}; #[derive(Debug, Clone)] pub struct PreparedStatement { pub statement: Option<SQLStatement>, pub fields: Vec<FieldDescription>, }