add optional serde implementations for parser ast

This commit is contained in:
pedrocarlo 2025-06-02 16:20:48 -03:00
parent f1146e716c
commit f535ff1398
6 changed files with 92 additions and 1 deletions

View file

@ -0,0 +1,5 @@
use limbo_sqlite3_parser::ast;
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
struct Predicate(ast::Expr);

View file

@ -15,6 +15,7 @@ pub mod create;
pub mod create_index;
pub mod delete;
pub mod drop;
pub mod expr;
pub mod insert;
pub mod select;
pub mod update;