| 1233 | /// CAST expression: CAST(expr AS type-spec) |
| 1234 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 1235 | pub struct CastExpression { |
| 1236 | pub expression: Box<Expression>, |
| 1237 | pub target_type: TypeSpec, |
| 1238 | pub location: Location, |
| 1239 | } |
| 1240 | |
| 1241 | /// Subquery expression: (subquery) in general expressions |
| 1242 | #[derive(Debug, Clone, Serialize, Deserialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected