Support relation visitor to visit the Option field (#1556)

This commit is contained in:
Jax Liu 2024-11-29 20:08:52 +08:00 committed by GitHub
parent 6291afb2c7
commit 92c6e7f79b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 89 additions and 8 deletions

View file

@ -7653,6 +7653,7 @@ impl fmt::Display for ShowStatementInParentType {
pub struct ShowStatementIn {
pub clause: ShowStatementInClause,
pub parent_type: Option<ShowStatementInParentType>,
#[cfg_attr(feature = "visitor", visit(with = "visit_relation"))]
pub parent_name: Option<ObjectName>,
}