Changes between Version 2 and Version 3 of Partition


Ignore:
Timestamp:
06/15/22 00:54:13 (2 years ago)
Author:
krit
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Partition

    v2 v3  
    1313          paymentDate datetime NOT NULL,
    1414          amount decimal(10,2) NOT NULL,
    15           PRIMARY KEY (customerNumber,paymentDate ) ) PARTITION BY RANGE( TO_DAYS(paymentDate) )
     15          PRIMARY KEY (customerNumber,paymentDate ) )
     16          ENGINE=InnoDB PARTITION BY RANGE( TO_DAYS(paymentDate) )
    1617          ( PARTITION p2003 VALUES LESS THAN (TO_DAYS('2004-01-01')),
    1718            PARTITION p2004 VALUES LESS THAN (TO_DAYS('2005-01-01')),