mirror of
https://github.com/plausible/analytics.git
synced 2024-12-25 02:24:55 +03:00
7 lines
216 B
Elixir
7 lines
216 B
Elixir
|
SELECT partition
|
||
|
FROM system.parts
|
||
|
WHERE table = 'events'
|
||
|
<%= if @start_from do %>AND partition >= '<%= @start_from %>'<% end %>
|
||
|
<%= if @stop_at do %>AND partition <= '<%= @stop_at %>'<% end %>
|
||
|
ORDER BY partition
|