From a45bbbb6f2fbd117d5d314e34e85afc2b48ad677 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 20 Sep 2023 11:22:25 +0200 Subject: Merging upstream version 18.5.1. Signed-off-by: Daniel Baumann --- docs/sqlglot/dialects/oracle.html | 42 ++++++++++++++++++++------------------- 1 file changed, 22 insertions(+), 20 deletions(-) (limited to 'docs/sqlglot/dialects/oracle.html') diff --git a/docs/sqlglot/dialects/oracle.html b/docs/sqlglot/dialects/oracle.html index 1dc1713..c0b08e7 100644 --- a/docs/sqlglot/dialects/oracle.html +++ b/docs/sqlglot/dialects/oracle.html @@ -955,6 +955,7 @@
IDENTIFIERS_CAN_START_WITH_DIGIT
DPIPE_IS_STRING_CONCAT
STRICT_STRING_CONCAT
+
SUPPORTS_USER_DEFINED_TYPES
NORMALIZE_FUNCTIONS
NULL_ORDERING
DATE_FORMAT
@@ -1308,6 +1309,7 @@ Default: 3
TABLE_INDEX_HINT_TOKENS
WINDOW_ALIAS_TOKENS
WINDOW_SIDES
+
FETCH_TOKENS
ADD_CONSTRAINT_TOKENS
STRICT_CAST
CONCAT_NULL_OUTPUTS_STRING
@@ -1315,12 +1317,12 @@ Default: 3
IDENTIFY_PIVOT_STRINGS
LOG_BASE_FIRST
LOG_DEFAULTS_TO_LN
-
SUPPORTS_USER_DEFINED_TYPES
ALTER_TABLE_ADD_COLUMN_KEYWORD
TABLESAMPLE_CSV
INDEX_OFFSET
UNNEST_COLUMN_ONLY
STRICT_STRING_CONCAT
+
SUPPORTS_USER_DEFINED_TYPES
NORMALIZE_FUNCTIONS
NULL_ORDERING
FORMAT_MAPPING
@@ -1662,26 +1664,26 @@ Default: True -
257    @classmethod
-258    def can_identify(cls, text: str, identify: str | bool = "safe") -> bool:
-259        """Checks if text can be identified given an identify option.
-260
-261        Args:
-262            text: The text to check.
-263            identify:
-264                "always" or `True`: Always returns true.
-265                "safe": True if the identifier is case-insensitive.
-266
-267        Returns:
-268            Whether or not the given text can be identified.
-269        """
-270        if identify is True or identify == "always":
-271            return True
-272
-273        if identify == "safe":
-274            return not cls.case_sensitive(text)
+            
260    @classmethod
+261    def can_identify(cls, text: str, identify: str | bool = "safe") -> bool:
+262        """Checks if text can be identified given an identify option.
+263
+264        Args:
+265            text: The text to check.
+266            identify:
+267                "always" or `True`: Always returns true.
+268                "safe": True if the identifier is case-insensitive.
+269
+270        Returns:
+271            Whether or not the given text can be identified.
+272        """
+273        if identify is True or identify == "always":
+274            return True
 275
-276        return False
+276        if identify == "safe":
+277            return not cls.case_sensitive(text)
+278
+279        return False
 
-- cgit v1.2.3