Opened 19 years ago
Closed 17 years ago
#4013 closed defect (bug) (fixed)
post_ID in schema not consistent across tables
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | 2.8 | Priority: | normal |
| Severity: | normal | Version: | 2.2 |
| Component: | Optimization | Keywords: | has-patch database schema |
| Focuses: | Cc: |
Description
Since r5078 the largest possible value for wp_posts.ID due to the cast to int is limited to 2,147,483,647 on most 32-bit platforms. The column for wp_comments.comment_post_ID is also an INT-sized value, as opposed to the BIGINT-sized value in wp_posts. I am recommending we reduce the size of the post_IDs in the schema from BIGINT to INT. Doing so will greatly reduce the table and index size for the tables wp_comments, wp_post2cat, wp_postmeta and is just good practice in regards to efficient database design.
See also #3725.
Attachments (1)
Change History (3)
Note: See
TracTickets for help on using
tickets.
Modifies database schema and bumps db_version