File size: 225 Bytes
c27e67a
 
 
 
 
 
1
2
3
4
5
6
7
SELECT distinct(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