mirror of
https://github.com/apache/superset.git
synced 2026-06-07 16:49:17 +00:00
* Refactor db_engine_specs into package * Rename bigquery class and add epoch funcs * Fix flake8 errors * Dynamically load all engine specs * Fix linting errors and unit tests * Implement Snowflake epoch time funcs * Implement Teradata epoch time func * Fix presto datasource query and remove unused import * Fix broken datasource query * Add mypy ignore for false positive * Add missing license files * Make create_time_grains_tuple public * Fix flake8 quote * Fix incorrect licence header
65 lines
2.5 KiB
Python
65 lines
2.5 KiB
Python
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License.
|
|
# pylint: disable=C,R,W
|
|
from urllib import parse
|
|
|
|
from superset.db_engine_specs.postgres import PostgresBaseEngineSpec
|
|
|
|
|
|
class SnowflakeEngineSpec(PostgresBaseEngineSpec):
|
|
engine = 'snowflake'
|
|
force_column_alias_quotes = True
|
|
max_column_name_length = 256
|
|
|
|
time_grain_functions = {
|
|
None: '{col}',
|
|
'PT1S': "DATE_TRUNC('SECOND', {col})",
|
|
'PT1M': "DATE_TRUNC('MINUTE', {col})",
|
|
'PT5M': "DATEADD(MINUTE, FLOOR(DATE_PART(MINUTE, {col}) / 5) * 5, \
|
|
DATE_TRUNC('HOUR', {col}))",
|
|
'PT10M': "DATEADD(MINUTE, FLOOR(DATE_PART(MINUTE, {col}) / 10) * 10, \
|
|
DATE_TRUNC('HOUR', {col}))",
|
|
'PT15M': "DATEADD(MINUTE, FLOOR(DATE_PART(MINUTE, {col}) / 15) * 15, \
|
|
DATE_TRUNC('HOUR', {col}))",
|
|
'PT0.5H': "DATEADD(MINUTE, FLOOR(DATE_PART(MINUTE, {col}) / 30) * 30, \
|
|
DATE_TRUNC('HOUR', {col}))",
|
|
'PT1H': "DATE_TRUNC('HOUR', {col})",
|
|
'P1D': "DATE_TRUNC('DAY', {col})",
|
|
'P1W': "DATE_TRUNC('WEEK', {col})",
|
|
'P1M': "DATE_TRUNC('MONTH', {col})",
|
|
'P0.25Y': "DATE_TRUNC('QUARTER', {col})",
|
|
'P1Y': "DATE_TRUNC('YEAR', {col})",
|
|
}
|
|
|
|
@classmethod
|
|
def adjust_database_uri(cls, uri, selected_schema=None):
|
|
database = uri.database
|
|
if '/' in uri.database:
|
|
database = uri.database.split('/')[0]
|
|
if selected_schema:
|
|
selected_schema = parse.quote(selected_schema, safe='')
|
|
uri.database = database + '/' + selected_schema
|
|
return uri
|
|
|
|
@classmethod
|
|
def epoch_to_dttm(cls):
|
|
return "DATEADD(S, {col}, '1970-01-01')"
|
|
|
|
@classmethod
|
|
def epoch_ms_to_dttm(cls):
|
|
return "DATEADD(MS, {col}, '1970-01-01')"
|