Skip to main content

gluesql_core/plan/statement/query/source/
dictionary.rs

1use {
2    super::TableAliasPlan,
3    crate::ast,
4    serde::{Deserialize, Serialize},
5};
6
7#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
8pub struct DictionarySourcePlan {
9    pub dictionary: ast::Dictionary,
10    pub alias: TableAliasPlan,
11}