sqlglot.dialects.singlestore      
                
                        
                        
                        
            
            SUPPORTS_ORDER_BY_ALL        =
True
        
    
    
    
            Whether ORDER BY ALL is supported (expands to all the selected columns) as in DuckDB, Spark3/Databricks
            UNESCAPED_SEQUENCES: Dict[str, str]        =
            {'\\a': '\x07', '\\b': '\x08', '\\f': '\x0c', '\\n': '\n', '\\r': '\r', '\\t': '\t', '\\v': '\x0b', '\\\\': '\\'}
        
    
    
    
            Mapping of an escaped sequence (\n) to its unescaped version (
).
            tokenizer_class        =
<class 'sqlglot.tokens.Tokenizer'>
        
    
    
    
    
                            
            parser_class        =
<class 'sqlglot.parser.Parser'>
        
    
    
    
    
                            
            generator_class        =
<class 'sqlglot.generator.Generator'>
        
    
    
    
    
                            
            TIME_TRIE: Dict        =
            {'%': {'M': {0: True}, 'c': {0: True}, 'e': {0: True}, 'h': {0: True}, 'i': {0: True}, 's': {0: True}, 'u': {0: True}, 'k': {0: True}, 'l': {0: True}, 'T': {0: True}, 'W': {0: True}}}
        
    
    
    
    
                            
            FORMAT_TRIE: Dict        =
            {'%': {'M': {0: True}, 'c': {0: True}, 'e': {0: True}, 'h': {0: True}, 'i': {0: True}, 's': {0: True}, 'u': {0: True}, 'k': {0: True}, 'l': {0: True}, 'T': {0: True}, 'W': {0: True}}}
        
    
    
    
    
                            
            INVERSE_TIME_MAPPING: Dict[str, str]        =
            {'%B': '%M', '%-m': '%c', '%-d': '%e', '%I': '%h', '%M': '%i', '%S': '%s', '%W': '%u', '%-H': '%k', '%-I': '%l', '%H:%M:%S': '%T', '%A': '%W'}
        
    
    
    
    
                            
            INVERSE_TIME_TRIE: Dict        =
            {'%': {'B': {0: True}, '-': {'m': {0: True}, 'd': {0: True}, 'H': {0: True}, 'I': {0: True}}, 'I': {0: True}, 'M': {0: True}, 'S': {0: True}, 'W': {0: True}, 'H': {':': {'%': {'M': {':': {'%': {'S': {0: True}}}}}}}, 'A': {0: True}}}