Opened 6 years ago
Closed 6 years ago
Last modified 6 years ago
#13356 closed Bug Report - General (fixed)
mysql fails
Reported by: | paul | Owned by: | |
---|---|---|---|
Priority: | blocker | Milestone: | 29.2 |
Component: | MythTV - General | Version: | v29.1 |
Severity: | high | Keywords: | |
Cc: | Ticket locked: | no |
Description
mythdbconn.cpp tries to "SELECT COUNT(INFORMATION_SCHEMA.TABLES.TABLE_NAME) FROM INFORMATION_SCHEMA.TABLES WHERE INFORMATION_SCHEMA.TABLES.TABLE_SCHEMA = DATABASE() AND INFORMATION_SCHEMA.TABLES.TABLE_TYPE = 'BASE TABLE';"
mysql 8.0.13 fails: "ERROR 1054 (42S22): Unknown column 'INFORMATION_SCHEMA.TABLES.TABLE_NAME' in 'field list'"
mythbackend fails to start.
Changing it to simply "SELECT COUNT(TABLE_NAME) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = DATABASE() AND TABLE_TYPE = 'BASE TABLE';" would provide a fix.
Change History (5)
comment:1 Changed 6 years ago by
comment:2 Changed 6 years ago by
Yes; there are also two other queries that do the same thing (in DBUtil::GetTables? in dbutil.cpp and DatabaseLogger::tableExists in loggingserver.cpp)
comment:4 Changed 6 years ago by
Owner: | set to David Engel <dengel@…> |
---|---|
Resolution: | → fixed |
Status: | new → closed |
In 068d660eb/mythtv:
comment:5 Changed 6 years ago by
Milestone: | needs_triage → 29.2 |
---|
It's probably obvious, but the file seems to be mythtv/libs/libmythbase/mythdbcon.cpp