You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATETABLE `t` (
`a`int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin
PARTITION BY RANGE ( `a` ) (
PARTITION `p0`VALUES LESS THAN (1),
PARTITION `p1`VALUES LESS THAN (2),
PARTITION `p2`VALUES LESS THAN (3),
PARTITION `p_max`VALUES LESS THAN (MAXVALUE)
)
Development Task
table schema:
query:
Actually, we can remove the
a=1
after partition pruning for this case.The text was updated successfully, but these errors were encountered: