| 2276 | /// documentation for more details. |
| 2277 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
| 2278 | pub struct Values { |
| 2279 | /// The table schema |
| 2280 | pub schema: DFSchemaRef, |
| 2281 | /// Values |
| 2282 | pub values: Vec<Vec<Expr>>, |
| 2283 | } |
| 2284 | |
| 2285 | // Manual implementation needed because of `schema` field. Comparison excludes this field. |
| 2286 | impl PartialOrd for Values { |
no outgoing calls
searching dependent graphs…