// SPDX-License-Identifier: Apache-2.0
//! Recursive-descent parser for NodeDB array DDL/DML.
//!
//! Recognises `CREATE ARRAY`, `DROP ARRAY`, `INSERT INTO ARRAY`, and
//! `DELETE FROM ARRAY` — non-standard syntax that sqlparser-rs cannot
//! accept. `try_parse_array_statement` returns `None` for any other
//! input so the caller can fall through to the standard sqlparser path.
pub use ;
pub use try_parse_array_statement;