Package io.crate.analyze

Examples of io.crate.analyze.TableParameterInfo


        this.columnPolicy = columnPolicy;
        this.hasAutoGeneratedPrimaryKey = (primaryKey == null || primaryKey.size()==0);
        this.partitionedBy = partitionedBy;
        this.partitions = partitions;
        if (partitionedByColumns.isEmpty()) {
            tableParameterInfo = new TableParameterInfo();
        } else {
            tableParameterInfo = new AlterPartitionedTableParameterInfo();
        }
    }
View Full Code Here


        this.partitions = partitions;
        this.columnPolicy = columnPolicy;
        if (isPartitioned) {
            tableParameterInfo = new AlterPartitionedTableParameterInfo();
        } else {
            tableParameterInfo = new TableParameterInfo();
        }
    }
View Full Code Here

TOP

Related Classes of io.crate.analyze.TableParameterInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.