We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
startDate
1 parent 2f14442 commit b6c8a98Copy full SHA for b6c8a98
services/libs/tinybird/pipes/generate_timeseries_bounds.pipe
@@ -14,12 +14,14 @@ SQL >
14
min(toDate(activities_filtered.timestamp)) as actual_start_date,
15
toDate({{ endDate }}) as actual_end_date
16
from activities_filtered
17
+ where activities_filtered.timestamp > '1980-01-01'
18
{% end %}
19
{% if not defined(startDate) and not defined(endDate) %}
20
select
21
22
toDate(now()) as actual_end_date
23
24
25
26
{% if defined(startDate) and defined(endDate) %}
27
select toDate({{ startDate }}) as actual_start_date, toDate({{ endDate }}) as actual_end_date
0 commit comments