mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
fix: can't sync temporal flag on virtual table (#19366)
This commit is contained in:
@@ -130,8 +130,8 @@ def cta_result(ctas_method: CtasMethod):
|
||||
if backend() != "presto":
|
||||
return [], []
|
||||
if ctas_method == CtasMethod.TABLE:
|
||||
return [{"rows": 1}], [{"name": "rows", "type": "BIGINT", "is_date": False}]
|
||||
return [{"result": True}], [{"name": "result", "type": "BOOLEAN", "is_date": False}]
|
||||
return [{"rows": 1}], [{"name": "rows", "type": "BIGINT", "is_dttm": False}]
|
||||
return [{"result": True}], [{"name": "result", "type": "BOOLEAN", "is_dttm": False}]
|
||||
|
||||
|
||||
# TODO(bkyryliuk): quote table and schema names for all databases
|
||||
|
||||
Reference in New Issue
Block a user