Opened 12 years ago
Closed 12 years ago
#30097 closed defect (bug) (fixed)
Unnecessary wildcard query when upgrading sites on a network
| Reported by: | jeremyfelt | Owned by: | jeremyfelt |
|---|---|---|---|
| Priority: | normal | Milestone: | 4.1 |
| Component: | Networks and Sites | Version: | |
| Severity: | normal | Keywords: | good-first-bug has-patch |
| Cc: | Focuses: | multisite |
Description
From #24922
In wp-admin/network/upgrade.php, we use SELECT * FROM rather than SELECT blog_id FROM, even though blog_id is the only field used after the query.
Attachments (1)
Change History (4)
#2
@
12 years ago
- Milestone Future Release → 4.1
- Owner set to
- Status new → accepted
Thanks for the patch @marcosf! I tested this as well and everything's working properly.
Two tips for future patches - create the patch file from the repository root as this makes it easier to apply. Also, watch the diff for any change in whitespace.
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
I've changed the "SELECT *" to "SELECT blog_id" and tested the upgrade. The upgrade was working fine after applying the patch/change. I also double checked and did not find anything else that's needed by the upgrade script besides the blog id.