teradata.py 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing,
  12. # software distributed under the License is distributed on an
  13. # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. # KIND, either express or implied. See the License for the
  15. # specific language governing permissions and limitations
  16. # under the License.
  17. from superset.db_engine_specs.base import BaseEngineSpec, LimitMethod
  18. class TeradataEngineSpec(BaseEngineSpec):
  19. """Dialect for Teradata DB."""
  20. engine = "teradata"
  21. limit_method = LimitMethod.WRAP_SQL
  22. max_column_name_length = 30 # since 14.10 this is 128
  23. _time_grain_functions = {
  24. None: "{col}",
  25. "PT1M": "TRUNC(CAST({col} as DATE), 'MI')",
  26. "PT1H": "TRUNC(CAST({col} as DATE), 'HH')",
  27. "P1D": "TRUNC(CAST({col} as DATE), 'DDD')",
  28. "P1W": "TRUNC(CAST({col} as DATE), 'WW')",
  29. "P1M": "TRUNC(CAST({col} as DATE), 'MONTH')",
  30. "P0.25Y": "TRUNC(CAST({col} as DATE), 'Q')",
  31. "P1Y": "TRUNC(CAST({col} as DATE), 'YEAR')",
  32. }
  33. @classmethod
  34. def epoch_to_dttm(cls) -> str:
  35. return (
  36. "CAST(((CAST(DATE '1970-01-01' + ({col} / 86400) AS TIMESTAMP(0) "
  37. "AT 0)) AT 0) + (({col} MOD 86400) * INTERVAL '00:00:01' "
  38. "HOUR TO SECOND) AS TIMESTAMP(0))"
  39. )