(
scx: &StatementContext,
table_name: <Aug as AstInfo>::ItemName,
columns: Vec<Ident>,
)
| 1829 | } |
| 1830 | |
| 1831 | pub fn describe_copy_from_table( |
| 1832 | scx: &StatementContext, |
| 1833 | table_name: <Aug as AstInfo>::ItemName, |
| 1834 | columns: Vec<Ident>, |
| 1835 | ) -> Result<StatementDesc, PlanError> { |
| 1836 | let (_, desc, _, _) = query::plan_copy_from(scx, table_name, columns)?; |
| 1837 | Ok(StatementDesc::new(Some(desc))) |
| 1838 | } |
| 1839 | |
| 1840 | pub fn describe_copy_item( |
| 1841 | scx: &StatementContext, |
no test coverage detected