analytics / priv /data_migrations /NumericIDs /sql /list-partitions.sql.eex
Leon4gr45's picture
Upload folder using huggingface_hub (part 4)
c27e67a verified
Raw
History Blame Contribute Delete
225 Bytes
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