LINEAR KEY Partitioning Type
Learn about LINEAR KEY partitioning, which combines the internal key hashing with a linear algorithm for efficient partition handling.
Syntax
LINEAR PARTITION BY KEY ([column_names])
[PARTITIONS (number_of_partitions)]Description
Example
CREATE OR REPLACE TABLE t1 (v1 INT)
PARTITION BY LINEAR KEY (v1)
PARTITIONS 2;Last updated
Was this helpful?

