1
2
3
4
5
6
7
use crate::ast::types::SQLExpression;

#[derive(Clone, Debug, PartialEq)]
pub struct UpdateItem {
    pub column: String,       // update할 컬럼
    pub value: SQLExpression, // 수정할 값
}