• Aleksey Midenkov's avatar
    MDEV-26471 Syntax extension: do not require PARTITION keyword in partition definition · f6b0e34c
    Aleksey Midenkov authored
    Instead of
    
      create or replace table t1 (x int)
      partition by range(x) (
        partition p1 values less than (10),
        partition pn values less than maxvalue);
    
    it should be possible to type in shorter form:
    
      create or replace table t1 (x int)
      partition by range(x) (
        p1 values less than (10),
        pn values less than maxvalue);
    
    As above examples demonstrate, make PARTITION keyword in partition
    definition optional.
    f6b0e34c
partition_alter.result 10.3 KB