pub struct CallStatement<X: Extension = NoExt> {
pub name: ObjectName,
pub args: ThinVec<Expr<X>>,
pub parenthesized: bool,
pub meta: Meta,
}Expand description
A CALL <name> [ ( [ <arg> [, ...] ] ) ] routine invocation (DuckDB, MySQL; gated by
UtilitySyntax::call).
Invokes a table function or stored procedure as a top-level statement
(CALL pragma_table_info('t'), CALL my_proc(1, 2)). The arguments are full
expressions, which makes this node generic over the extension X.
The parenthesized argument list is mandatory for DuckDB — it rejects a bare
CALL pragma_version (syntax error) but accepts an empty CALL pragma_version() — and
optional for MySQL, whose grammar (CALL_SYM sp_name opt_paren_expr_list) admits a
bare CALL my_proc with no argument list at all (verified on mysql:8.4.10 — the bare
form resolves to ER_SP_DOES_NOT_EXIST, a grammar-positive binding reject). The
parenthesized surface flag distinguishes the two written forms
so the source round-trips: false is the MySQL bare form (CALL p, always empty
args), true is the parenthesized form (CALL p() / CALL p(1, 2),
which is the only DuckDB shape). The bare form is gated by
UtilitySyntax::call_bare_name.
Fields§
§name: ObjectNameName referenced by this syntax.
args: ThinVec<Expr<X>>The argument expressions, in source order; may be empty (CALL f()) when
parenthesized is true, and is always empty for the bare
MySQL form (CALL f).
parenthesized: boolWhether a parenthesized argument list was written. true renders the (...) (empty
or not); false is the MySQL bare CALL name form with no argument list, which
renders just the name. Always true for DuckDB, whose parentheses are mandatory.
meta: MetaSource location and node identity.
Trait Implementations§
Source§impl<X: Clone + Extension> Clone for CallStatement<X>
impl<X: Clone + Extension> Clone for CallStatement<X>
Source§fn clone(&self) -> CallStatement<X>
fn clone(&self) -> CallStatement<X>
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<'de, X> Deserialize<'de> for CallStatement<X>where
X: Deserialize<'de> + Extension,
impl<'de, X> Deserialize<'de> for CallStatement<X>where
X: Deserialize<'de> + Extension,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl<X: Eq + Extension> Eq for CallStatement<X>
Source§impl<X: Extension + Render> Render for CallStatement<X>
impl<X: Extension + Render> Render for CallStatement<X>
Source§fn render(&self, ctx: &RenderCtx<'_>, f: &mut Formatter<'_>) -> Result
fn render(&self, ctx: &RenderCtx<'_>, f: &mut Formatter<'_>) -> Result
Source§fn operand_binding_power(&self) -> Option<BindingPower>
fn operand_binding_power(&self) -> Option<BindingPower>
None (the default) for a self-delimiting node — an atom, call, or
constructor — that never needs parentheses. Read moreSource§impl<X> Serialize for CallStatement<X>
impl<X> Serialize for CallStatement<X>
Source§impl<X: Extension> Spanned for CallStatement<X>
impl<X: Extension> Spanned for CallStatement<X>
impl<X: PartialEq + Extension> StructuralPartialEq for CallStatement<X>
Auto Trait Implementations§
impl<X> Freeze for CallStatement<X>
impl<X> RefUnwindSafe for CallStatement<X>where
X: RefUnwindSafe,
impl<X> Send for CallStatement<X>where
X: Send,
impl<X> Sync for CallStatement<X>where
X: Sync,
impl<X> Unpin for CallStatement<X>where
X: Unpin,
impl<X> UnsafeUnpin for CallStatement<X>
impl<X> UnwindSafe for CallStatement<X>where
X: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> DynAstExt for T
impl<T> DynAstExt for T
Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&dyn Any for downcasting a node back to its concrete type.Source§fn dyn_clone(&self) -> Box<dyn DynAstExt>
fn dyn_clone(&self) -> Box<dyn DynAstExt>
Clone (whose
Self-returning signature cannot go through a vtable).Source§fn dyn_eq(&self, other: &dyn DynAstExt) -> bool
fn dyn_eq(&self, other: &dyn DynAstExt) -> bool
PartialEq (whose &Self argument cannot go through a vtable). Equal
iff other holds the same concrete type and that type deems the values
equal; differently-typed nodes are never equal.