(&self, p: MergeParams)
| 122 | } |
| 123 | |
| 124 | fn plan_merge(&self, p: MergeParams) -> Result<Vec<SqlPlan>> { |
| 125 | Err(SqlError::Unsupported { |
| 126 | detail: format!( |
| 127 | "MERGE is not supported on key-value collection '{}'", |
| 128 | p.collection |
| 129 | ), |
| 130 | }) |
| 131 | } |
| 132 | } |