(
scx: &StatementContext,
object_name: <Aug as AstInfo>::ItemName,
columns: Vec<Ident>,
)
| 1838 | } |
| 1839 | |
| 1840 | pub fn describe_copy_item( |
| 1841 | scx: &StatementContext, |
| 1842 | object_name: <Aug as AstInfo>::ItemName, |
| 1843 | columns: Vec<Ident>, |
| 1844 | ) -> Result<StatementDesc, PlanError> { |
| 1845 | let (_, desc, _, _) = query::plan_copy_item(scx, object_name, columns)?; |
| 1846 | Ok(StatementDesc::new(Some(desc))) |
| 1847 | } |
| 1848 | |
| 1849 | pub fn describe_copy( |
| 1850 | scx: &StatementContext, |
no test coverage detected