Method | Description |
---|
Add | Add a new TablePartition object. PARAMETERS: HighValues as String. |
AddColumnToPartitionKey | Add another column to the partition key. For type LIST, the passed-in column replaces the previous column. PARAMETERS: Name as String. |
DeleteColumnFromPartitionKey | Delete a column from the partition key. Cannot delete last column in key. PARAMETERS: Name as String. |
DeletePartitionKey | Delete all columns in the partition key. This also deletes all partitions and all subpartitions including the subpartition key. |
GetPartitionColumnNumber | Look for the column in the partition key. If it finds it, then it returns the column's number. PARAMETERS: Name of the partition column as String. RETURN DATATYPE: Integer. |
Remove | Remove a TablePartition specified by the given Number. PARAMETERS: Number as Integer. |
RemoveByName | Remove the TablePartition specified by the given Name. PARAMETERS: Name as String. |
SetPartitionColumnNumber | Change the sequence of the columns in the partition key by setting the number of a column. PARAMETERS: Name of the partition column as String, Number as Integer. |