// Step 2: Table Partitioner
//
if (this.pplan == null) {
if (this.hints.start_random) {
LOG.debug("Randomizing the catalog partitioning attributes");
PartitionPlan random_pplan = new RandomPartitioner(this, this.info, false).generate(this.hints);
random_pplan.apply(this.info.catalogContext.database);
LOG.debug("Randomized Catalog:\n" + random_pplan);
}
LOG.debug("Creating partition plan using " + this.partitioner.getClass().getSimpleName());