Changes between Version 2 and Version 3 of Partition
- Timestamp:
- 06/15/22 00:54:13 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Partition
v2 v3 13 13 paymentDate datetime NOT NULL, 14 14 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) ) 16 17 ( PARTITION p2003 VALUES LESS THAN (TO_DAYS('2004-01-01')), 17 18 PARTITION p2004 VALUES LESS THAN (TO_DAYS('2005-01-01')),