proof_of_sql_parser

Struct SelectStatement

source
pub struct SelectStatement {
    pub expr: Box<SetExpression>,
    pub order_by: Vec<OrderBy>,
    pub slice: Option<Slice>,
}
Expand description

Representation of a select statement, that is, the only type of queries allowed.

Fields§

§expr: Box<SetExpression>

the query expression

§order_by: Vec<OrderBy>

if non-empty, an sort-order that is applied to the rows returned as result

§slice: Option<Slice>

an optional slice clause, which can restrict the rows returned to a window within the set of rows as generated by expr and order_by.

Implementations§

source§

impl SelectStatement

source

pub fn get_table_references( &self, default_schema: Identifier, ) -> Vec<ResourceId>

This function returns the referenced tables in the provided intermediate_ast

Note that we provide a default_schema in case the table expression does not have any associated schema. This default_schema is used to construct the resource_id, as we cannot have this field empty. In case the table expression already has an associated schema, then it’s used instead of default_schema. Although the DQL endpoint would require both to be equal, we have chosen to not fail here as this would imply the caller to always know beforehand the referenced schemas.

Return:

  • The vector with all tables referenced by the intermediate ast, encoded as resource ids.

Trait Implementations§

source§

impl Clone for SelectStatement

source§

fn clone(&self) -> SelectStatement

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SelectStatement

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for SelectStatement

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl FromStr for SelectStatement

source§

type Err = ParseError

The associated error which can be returned from parsing.
source§

fn from_str(query: &str) -> ParseResult<Self>

Parses a string s to return a value of this type. Read more
source§

impl PartialEq for SelectStatement

source§

fn eq(&self, other: &SelectStatement) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for SelectStatement

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for SelectStatement

source§

impl StructuralPartialEq for SelectStatement

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,