Skip to main content

DatabricksDialect

Struct DatabricksDialect 

Source
pub struct DatabricksDialect;
Expand description

Trait Implementations§

Source§

impl Clone for DatabricksDialect

Source§

fn clone(&self) -> DatabricksDialect

Returns a duplicate 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 DatabricksDialect

Source§

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

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

impl Default for DatabricksDialect

Source§

fn default() -> DatabricksDialect

Returns the “default value” for a type. Read more
Source§

impl Dialect for DatabricksDialect

Source§

fn supports_table_versioning(&self) -> bool

Source§

fn supports_nested_comments(&self) -> bool

Source§

fn supports_group_by_with_modifier(&self) -> bool

Source§

fn supports_values_as_table_factor(&self) -> bool

Source§

fn is_delimited_identifier_start(&self, ch: char) -> bool

Determine if a character starts a quoted identifier. The default implementation, accepting “double quoted” ids is both ANSI-compliant and appropriate for most dialects (with the notable exception of MySQL, MS SQL, and sqlite). You can accept one of characters listed in Word::matching_end_quote here
Source§

fn is_identifier_start(&self, ch: char) -> bool

Determine if a character is a valid start character for an unquoted identifier
Source§

fn is_identifier_part(&self, ch: char) -> bool

Determine if a character is a valid unquoted identifier character
Source§

fn supports_filter_during_aggregation(&self) -> bool

Does the dialect support FILTER (WHERE expr) for aggregate queries?
Source§

fn supports_group_by_expr(&self) -> bool

Returns true if the dialects supports group sets, roll up, or cube expressions.
Source§

fn supports_lambda_functions(&self) -> bool

Returns true if the dialect supports lambda functions, for example: Read more
Source§

fn supports_select_wildcard_except(&self) -> bool

Returns true if the dialect supports an EXCEPT clause following a wildcard in a select list. Read more
Source§

fn require_interval_qualifier(&self) -> bool

Whether INTERVAL expressions require units (called “qualifiers” in the ANSI SQL spec) to be specified, e.g. INTERVAL 1 DAY vs INTERVAL 1. Read more
Source§

fn supports_struct_literal(&self) -> bool

Return true if the dialect supports the STRUCT literal Read more
Source§

fn dialect(&self) -> TypeId

Determine the TypeId of this dialect. Read more
Source§

fn is_nested_delimited_identifier_start(&self, _ch: char) -> bool

Determine if a character starts a potential nested quoted identifier. Example: RedShift supports the following quote styles to all mean the same thing: Read more
Source§

fn peek_nested_delimited_identifier_quotes( &self, _chars: Peekable<Chars<'_>>, ) -> Option<(char, Option<char>)>

Only applicable whenever Self::is_nested_delimited_identifier_start returns true If the next sequence of tokens potentially represent a nested identifier, then this method returns a tuple containing the outer quote style, and if present, the inner (nested) quote style. Read more
Source§

fn identifier_quote_style(&self, _identifier: &str) -> Option<char>

Return the character used to quote identifiers.
Source§

fn is_custom_operator_part(&self, _ch: char) -> bool

Most dialects do not have custom operators. Override this method to provide custom operators.
Source§

fn supports_string_literal_backslash_escape(&self) -> bool

Determine if the dialect supports escaping characters via ’' in string literals. Read more
Source§

fn ignores_wildcard_escapes(&self) -> bool

Determine whether the dialect strips the backslash when escaping LIKE wildcards (%, _). Read more
Source§

fn supports_unicode_string_literal(&self) -> bool

Determine if the dialect supports string literals with U& prefix. This is used to specify Unicode code points in string literals. For example, in PostgreSQL, the following is a valid string literal: Read more
Source§

fn supports_window_clause_named_window_reference(&self) -> bool

Returns true if the dialect supports referencing another named window within a window clause declaration. Read more
Source§

fn supports_within_after_array_aggregation(&self) -> bool

Returns true if the dialect supports ARRAY_AGG() [WITHIN GROUP (ORDER BY)] expressions. Otherwise, the dialect should expect an ORDER BY without the WITHIN GROUP clause, e.g. ANSI
Source§

fn supports_left_associative_joins_without_parens(&self) -> bool

Indicates whether the dialect supports left-associative join parsing by default when parentheses are omitted in nested joins. Read more
Source§

fn supports_outer_join_operator(&self) -> bool

Returns true if the dialect supports the (+) syntax for OUTER JOIN.
Source§

fn supports_cross_join_constraint(&self) -> bool

Returns true if the dialect supports a join specification on CROSS JOIN.
Source§

fn supports_connect_by(&self) -> bool

Returns true if the dialect supports CONNECT BY.
Source§

fn supports_execute_immediate(&self) -> bool

Returns true if the dialect supports EXECUTE IMMEDIATE statements.
Source§

fn supports_match_recognize(&self) -> bool

Returns true if the dialect supports the MATCH_RECOGNIZE operation.
Source§

fn supports_in_empty_list(&self) -> bool

Returns true if the dialect supports (NOT) IN () expressions
Source§

fn supports_start_transaction_modifier(&self) -> bool

Returns true if the dialect supports BEGIN {DEFERRED | IMMEDIATE | EXCLUSIVE | TRY | CATCH} [TRANSACTION] statements
Source§

fn supports_end_transaction_modifier(&self) -> bool

Returns true if the dialect supports END {TRY | CATCH} statements
Source§

fn supports_named_fn_args_with_eq_operator(&self) -> bool

Returns true if the dialect supports named arguments of the form FUN(a = '1', b = '2').
Source§

fn supports_named_fn_args_with_colon_operator(&self) -> bool

Returns true if the dialect supports named arguments of the form FUN(a : '1', b : '2').
Source§

fn supports_named_fn_args_with_assignment_operator(&self) -> bool

Returns true if the dialect supports named arguments of the form FUN(a := '1', b := '2').
Source§

fn supports_named_fn_args_with_rarrow_operator(&self) -> bool

Returns true if the dialect supports named arguments of the form FUN(a => '1', b => '2').
Source§

fn supports_named_fn_args_with_expr_name(&self) -> bool

Returns true if dialect supports argument name as arbitrary expression. e.g. FUN(LOWER('a'):'1', b:'2') Such function arguments are represented in the AST by the FunctionArg::ExprNamed variant, otherwise use the FunctionArg::Named variant (compatible reason).
Source§

fn supports_numeric_prefix(&self) -> bool

Returns true if the dialect supports identifiers starting with a numeric prefix such as tables named 59901_user_login
Source§

fn supports_numeric_literal_underscores(&self) -> bool

Returns true if the dialect supports numbers containing underscores, e.g. 10_000_000
Source§

fn supports_window_function_null_treatment_arg(&self) -> bool

Returns true if the dialects supports specifying null treatment as part of a window function’s parameter list as opposed to after the parameter list. Read more
Source§

fn supports_dictionary_syntax(&self) -> bool

Returns true if the dialect supports defining structs or objects using a syntax like {'x': 1, 'y': 2, 'z': 3}.
Source§

fn support_map_literal_syntax(&self) -> bool

Returns true if the dialect supports defining object using the syntax like Map {1: 10, 2: 20}.
Source§

fn supports_parenthesized_set_variables(&self) -> bool

Returns true if the dialect supports multiple variable assignment using parentheses in a SET variable declaration. Read more
Source§

fn supports_comma_separated_set_assignments(&self) -> bool

Returns true if the dialect supports multiple SET statements in a single statement. Read more
Source§

fn convert_type_before_value(&self) -> bool

Returns true if the dialect has a CONVERT function which accepts a type first and an expression second, e.g. CONVERT(varchar, 1)
Source§

fn supports_triple_quoted_string(&self) -> bool

Returns true if the dialect supports triple quoted string e.g. """abc"""
Source§

fn parse_prefix( &self, _parser: &mut Parser<'_>, ) -> Option<Result<Expr, ParserError>>

Dialect-specific prefix parser override
Source§

fn supports_trailing_commas(&self) -> bool

Does the dialect support trailing commas around the query?
Source§

fn supports_limit_comma(&self) -> bool

Does the dialect support parsing LIMIT 1, 2 as LIMIT 2 OFFSET 1?
Source§

fn supports_string_literal_concatenation(&self) -> bool

Returns true if the dialect supports concatenating of string literal Example: SELECT 'Hello ' "world" => SELECT 'Hello world'
Source§

fn supports_string_literal_concatenation_with_newline(&self) -> bool

Returns true if the dialect supports concatenating string literals with a newline. For example, the following statement would return true: Read more
Source§

fn supports_projection_trailing_commas(&self) -> bool

Does the dialect support trailing commas in the projection list?
Source§

fn supports_from_trailing_commas(&self) -> bool

Returns true if the dialect supports trailing commas in the FROM clause of a SELECT statement. Example: SELECT 1 FROM T, U, LIMIT 1
Source§

fn supports_column_definition_trailing_commas(&self) -> bool

Returns true if the dialect supports trailing commas in the column definitions list of a CREATE statement. Example: CREATE TABLE T (x INT, y TEXT,)
Source§

fn supports_object_name_double_dot_notation(&self) -> bool

Returns true if the dialect supports double dot notation for object names Read more
Source§

fn supports_empty_projections(&self) -> bool

Return true if the dialect supports empty projections in SELECT statements Read more
Source§

fn supports_select_expr_star(&self) -> bool

Return true if the dialect supports wildcard expansion on arbitrary expressions in projections. Read more
Source§

fn supports_from_first_select(&self) -> bool

Return true if the dialect supports “FROM-first” selects. Read more
Source§

fn supports_pipe_operator(&self) -> bool

Return true if the dialect supports pipe operator. Read more
Source§

fn supports_user_host_grantee(&self) -> bool

Does the dialect support MySQL-style 'user'@'host' grantee syntax?
Source§

fn supports_match_against(&self) -> bool

Does the dialect support the MATCH() AGAINST() syntax?
Source§

fn supports_select_wildcard_exclude(&self) -> bool

Returns true if the dialect supports an exclude option following a wildcard in the projection section. For example: SELECT * EXCLUDE col1 FROM tbl. Read more
Source§

fn supports_select_exclude(&self) -> bool

Returns true if the dialect supports an exclude option as the last item in the projection section, not necessarily after a wildcard. For example: SELECT *, c1, c2 EXCLUDE c3 FROM tbl Read more
Source§

fn supports_create_table_multi_schema_info_sources(&self) -> bool

Returns true if the dialect supports specifying multiple options in a CREATE TABLE statement for the structure of the new table. For example: CREATE TABLE t (a INT, b INT) AS SELECT 1 AS b, 2 AS a
Source§

fn supports_select_modifiers(&self) -> bool

Returns true if the dialect supports MySQL-specific SELECT modifiers like HIGH_PRIORITY, STRAIGHT_JOIN, SQL_SMALL_RESULT, etc. Read more
Source§

fn parse_infix( &self, _parser: &mut Parser<'_>, _expr: &Expr, _precedence: u8, ) -> Option<Result<Expr, ParserError>>

Dialect-specific infix parser override Read more
Source§

fn get_next_precedence( &self, _parser: &Parser<'_>, ) -> Option<Result<u8, ParserError>>

Dialect-specific precedence override Read more
Source§

fn get_next_precedence_default( &self, parser: &Parser<'_>, ) -> Result<u8, ParserError>

Get the precedence of the next token, looking at the full token stream. Read more
Source§

fn parse_statement( &self, _parser: &mut Parser<'_>, ) -> Option<Result<Statement, ParserError>>

Dialect-specific statement parser override Read more
Source§

fn parse_column_option( &self, _parser: &mut Parser<'_>, ) -> Result<Option<Result<Option<ColumnOption>, ParserError>>, ParserError>

Dialect-specific column option parser override Read more
Source§

fn prec_value(&self, prec: Precedence) -> u8

Decide the lexical Precedence of operators. Read more
Source§

fn prec_unknown(&self) -> u8

Returns the precedence when the precedence is otherwise unknown
Source§

fn describe_requires_table_keyword(&self) -> bool

Returns true if this dialect requires the TABLE keyword after DESCRIBE Read more
Source§

fn allow_extract_custom(&self) -> bool

Returns true if this dialect allows the EXTRACT function to words other than Keyword.
Source§

fn allow_extract_single_quotes(&self) -> bool

Returns true if this dialect allows the EXTRACT function to use single quotes in the part being extracted.
Source§

fn supports_extract_comma_syntax(&self) -> bool

Returns true if this dialect supports the EXTRACT function with a comma separator instead of FROM. Read more
Source§

fn supports_subquery_as_function_arg(&self) -> bool

Returns true if this dialect supports a subquery passed to a function as the only argument without enclosing parentheses. Read more
Source§

fn supports_create_view_comment_syntax(&self) -> bool

Returns true if this dialect supports the COMMENT clause in CREATE VIEW statements using the COMMENT = 'comment' syntax. Read more
Source§

fn supports_array_typedef_without_element_type(&self) -> bool

Returns true if this dialect supports the ARRAY type without specifying an element type. Read more
Source§

fn supports_parens_around_table_factor(&self) -> bool

Returns true if this dialect supports extra parentheses around lone table names or derived tables in the FROM clause. Read more
Source§

fn supports_dollar_placeholder(&self) -> bool

Returns true if this dialect allows dollar placeholders e.g. SELECT $var (SQLite)
Source§

fn supports_create_index_with_clause(&self) -> bool

Does the dialect support with clause in create index statement? e.g. CREATE INDEX idx ON t WITH (key = value, key2)
Source§

fn supports_explain_with_utility_options(&self) -> bool

Returns true if the dialect supports EXPLAIN statements with utility options e.g. EXPLAIN (ANALYZE TRUE, BUFFERS TRUE) SELECT * FROM tbl;
Source§

fn supports_asc_desc_in_column_definition(&self) -> bool

Returns true if the dialect supports ASC and DESC in column definitions e.g. CREATE TABLE t (a INT ASC, b INT DESC);
Source§

fn supports_factorial_operator(&self) -> bool

Returns true if the dialect supports a! expressions
Source§

fn supports_bitwise_shift_operators(&self) -> bool

Returns true if the dialect supports << and >> shift operators.
Source§

fn supports_multiline_comment_hints(&self) -> bool

Returns true if the dialect supports optimizer hints in multiline comments e.g. /*!50110 KEY_BLOCK_SIZE = 1024*/
Source§

fn supports_eq_alias_assignment(&self) -> bool

Returns true if this dialect supports treating the equals operator = within a SelectItem as an alias assignment operator, rather than a boolean expression. For example: the following statements are equivalent for such a dialect: Read more
Source§

fn supports_try_convert(&self) -> bool

Returns true if this dialect supports the TRY_CONVERT function
Source§

fn supports_bang_not_operator(&self) -> bool

Returns true if the dialect supports !a syntax for boolean NOT expressions.
Source§

fn supports_listen_notify(&self) -> bool

Returns true if the dialect supports the LISTEN, UNLISTEN and NOTIFY statements
Source§

fn supports_load_data(&self) -> bool

Returns true if the dialect supports the LOAD DATA statement
Source§

fn supports_load_extension(&self) -> bool

Returns true if the dialect supports the LOAD extension statement
Source§

fn supports_top_before_distinct(&self) -> bool

Returns true if this dialect expects the TOP option before the ALL/DISTINCT options in a SELECT statement.
Source§

fn supports_boolean_literals(&self) -> bool

Returns true if the dialect supports boolean literals (true and false). For example, in MSSQL these are treated as identifiers rather than boolean literals.
Source§

fn supports_show_like_before_in(&self) -> bool

Returns true if this dialect supports the LIKE 'pattern' option in a SHOW statement before the IN option
Source§

fn supports_comment_on(&self) -> bool

Returns true if this dialect supports the COMMENT statement
Source§

fn supports_create_table_select(&self) -> bool

Returns true if the dialect supports the CREATE TABLE SELECT statement
Source§

fn supports_partiql(&self) -> bool

Returns true if the dialect supports PartiQL for querying semi-structured data https://partiql.org/index.html
Source§

fn supports_constraint_keyword_without_name(&self) -> bool

Returns true if the dialect supports the CONSTRAINT keyword without a name in table constraint definitions. Read more
Source§

fn is_reserved_for_identifier(&self, kw: Keyword) -> bool

Returns true if the specified keyword is reserved and cannot be used as an identifier without special handling like quoting.
Source§

fn get_reserved_keywords_for_select_item_operator(&self) -> &[Keyword]

Returns reserved keywords that may prefix a select item expression e.g. SELECT CONNECT_BY_ROOT name FROM Tbl2 (Snowflake)
Source§

fn get_reserved_grantees_types(&self) -> &[GranteesType]

Returns grantee types that should be treated as identifiers
Source§

fn supports_table_sample_before_alias(&self) -> bool

Returns true if this dialect supports the TABLESAMPLE option before the table alias option. For example: Read more
Source§

fn supports_insert_set(&self) -> bool

Returns true if this dialect supports the INSERT INTO ... SET col1 = 1, ... syntax. Read more
Source§

fn supports_insert_table_function(&self) -> bool

Does the dialect support table function in insertion?
Source§

fn supports_insert_format(&self) -> bool

Does the dialect support insert formats, e.g. INSERT INTO ... FORMAT <format>
Source§

fn supports_set_stmt_without_operator(&self) -> bool

Returns true if this dialect supports SET statements without an explicit assignment operator such as =. For example: SET SHOWPLAN_XML ON.
Source§

fn is_column_alias(&self, kw: &Keyword, _parser: &mut Parser<'_>) -> bool

Returns true if the specified keyword should be parsed as a column identifier. See keywords::RESERVED_FOR_COLUMN_ALIAS
Source§

fn is_select_item_alias( &self, explicit: bool, kw: &Keyword, parser: &mut Parser<'_>, ) -> bool

Returns true if the specified keyword should be parsed as a select item alias. When explicit is true, the keyword is preceded by an AS word. Parser is provided to enable looking ahead if needed.
Source§

fn is_table_factor(&self, kw: &Keyword, _parser: &mut Parser<'_>) -> bool

Returns true if the specified keyword should be parsed as a table factor identifier. See keywords::RESERVED_FOR_TABLE_FACTOR
Source§

fn is_table_alias(&self, kw: &Keyword, _parser: &mut Parser<'_>) -> bool

Returns true if the specified keyword should be parsed as a table factor alias. See keywords::RESERVED_FOR_TABLE_ALIAS
Source§

fn is_table_factor_alias( &self, explicit: bool, kw: &Keyword, parser: &mut Parser<'_>, ) -> bool

Returns true if the specified keyword should be parsed as a table factor alias. When explicit is true, the keyword is preceded by an AS word. Parser is provided to enable looking ahead if needed.
Source§

fn supports_string_escape_constant(&self) -> bool

Returns true if this dialect supports the E’…’ syntax for string literals Read more
Source§

fn supports_table_hints(&self) -> bool

Returns true if the dialect supports the table hints in the FROM clause.
Source§

fn requires_single_line_comment_whitespace(&self) -> bool

Returns true if this dialect requires a whitespace character after -- to start a single line comment. Read more
Source§

fn supports_array_typedef_with_brackets(&self) -> bool

Returns true if the dialect supports array type definition with brackets with an optional size. For example: CREATE TABLE my_table (arr1 INT[], arr2 INT[3]) SELECT x::INT[]
Source§

fn supports_geometric_types(&self) -> bool

Returns true if the dialect supports geometric types. Read more
Source§

fn supports_order_by_all(&self) -> bool

Returns true if the dialect supports ORDER BY ALL. ALL which means all columns of the SELECT clause. Read more
Source§

fn supports_set_names(&self) -> bool

Returns true if the dialect supports SET NAMES <charset_name> [COLLATE <collation_name>]. Read more
Source§

fn supports_space_separated_column_options(&self) -> bool

Returns true if the dialect supports space-separated column options in a CREATE TABLE statement. For example: Read more
Source§

fn supports_alter_column_type_using(&self) -> bool

Returns true if the dialect supports the USING clause in an ALTER COLUMN statement. Example: Read more
Source§

fn supports_comma_separated_drop_column_list(&self) -> bool

Returns true if the dialect supports ALTER TABLE tbl DROP COLUMN c1, ..., cn
Source§

fn is_identifier_generating_function_name( &self, _ident: &Ident, _name_parts: &[ObjectNamePart], ) -> bool

Returns true if the dialect considers the specified ident as a function that returns an identifier. Typically used to generate identifiers programmatically. Read more
Source§

fn supports_notnull_operator(&self) -> bool

Returns true if the dialect supports the x NOTNULL operator expression.
Source§

fn supports_data_type_signed_suffix(&self) -> bool

Returns true if this dialect allows an optional SIGNED suffix after integer data types. Read more
Source§

fn supports_interval_options(&self) -> bool

Returns true if the dialect supports the INTERVAL data type with Postgres-style options. Read more
Source§

fn supports_create_table_like_parenthesized(&self) -> bool

Returns true if the dialect supports specifying which table to copy the schema from inside parenthesis. Read more
Source§

fn supports_semantic_view_table_factor(&self) -> bool

Returns true if the dialect supports SEMANTIC_VIEW() table functions. Read more
Source§

fn supports_quote_delimited_string(&self) -> bool

Support quote delimited string literals, e.g. Q'{...}' Read more
Source§

fn supports_comment_optimizer_hint(&self) -> bool

Returns true if the dialect supports query optimizer hints in the format of single and multi line comments immediately following a SELECT, INSERT, REPLACE, DELETE, or MERGE keyword. Read more
Source§

fn supports_double_ampersand_operator(&self) -> bool

Returns true if the dialect considers the && operator as a boolean AND operator.
Source§

fn supports_binary_kw_as_cast(&self) -> bool

Returns true if the dialect supports casting an expression to a binary type using the BINARY <expr> syntax.
Source§

fn supports_select_wildcard_replace(&self) -> bool

Returns true if this dialect supports the REPLACE option in a SELECT * wildcard expression. Read more
Source§

fn supports_select_wildcard_ilike(&self) -> bool

Returns true if this dialect supports the ILIKE option in a SELECT * wildcard expression. Read more
Source§

fn supports_select_wildcard_rename(&self) -> bool

Returns true if this dialect supports the RENAME option in a SELECT * wildcard expression. Read more
Source§

fn supports_optimize_table(&self) -> bool

Returns true if this dialect supports the OPTIMIZE TABLE statement. Read more
Source§

fn supports_install(&self) -> bool

Returns true if this dialect supports the INSTALL statement. Read more
Source§

fn supports_detach(&self) -> bool

Returns true if this dialect supports the DETACH statement. Read more
Source§

fn supports_prewhere(&self) -> bool

Returns true if this dialect supports the PREWHERE clause in SELECT statements. Read more
Source§

fn supports_with_fill(&self) -> bool

Returns true if this dialect supports the WITH FILL clause in ORDER BY expressions. Read more
Source§

fn supports_limit_by(&self) -> bool

Returns true if this dialect supports the LIMIT BY clause. Read more
Source§

fn supports_interpolate(&self) -> bool

Returns true if this dialect supports the INTERPOLATE clause in ORDER BY expressions. Read more
Source§

fn supports_settings(&self) -> bool

Returns true if this dialect supports the SETTINGS clause. Read more
Source§

fn supports_select_format(&self) -> bool

Returns true if this dialect supports the FORMAT clause in SELECT statements. Read more
Source§

impl Hash for DatabricksDialect

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for DatabricksDialect

Source§

fn cmp(&self, other: &DatabricksDialect) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for DatabricksDialect

Source§

fn eq(&self, other: &DatabricksDialect) -> 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 PartialOrd for DatabricksDialect

Source§

fn partial_cmp(&self, other: &DatabricksDialect) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Copy for DatabricksDialect

Source§

impl Eq for DatabricksDialect

Source§

impl StructuralPartialEq for DatabricksDialect

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, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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.