I have a table that has data inserted in a specific order. Am I guaranteed that by using say 0-of-10 partition decorator, the query is run over the first 10% of the table in the order in which the data was inserted, 1-of-10 partition decorator would query over the next 10% of the data in the order they were inserted etc.?
Also does count(*) on partition decorators result in a table scan (and hence cost non-zero amount) or does it only use metadata (and hence is free)?