We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1fad5b commit 38e8d83Copy full SHA for 38e8d83
tap_superset/streams.py
@@ -58,6 +58,7 @@ class ChartsStream(SupersetStream):
58
path = "/api/v1/chart/"
59
primary_keys: t.List[str] = ["id"]
60
replication_key: str = "last_saved_at"
61
+ is_sorted: bool = True
62
schema: t.Any = th.PropertiesList(
63
th.Property("is_managed_externally", th.BooleanType),
64
th.Property("certified_by", th.StringType),
@@ -88,6 +89,7 @@ class LogsStream(SupersetStream):
88
89
path = "/api/v1/log/"
90
91
replication_key: str = "dttm"
92
93
94
th.Property("action", th.StringType),
95
th.Property("dttm", th.DateTimeType),
0 commit comments