Closed virusav closed 7 years ago
Check your DBErrors.log for encountersMask. I get this error using TBCDB:
2017-03-30 10:40:19 SQL: SELECT guid, respawntime, map, instance, difficulty, resettime, encountersMask FROM creature_respawn LEFT JOIN instance ON instance = id
2017-03-30 10:40:19 query ERROR: Unknown column 'encountersMask' in 'field list'
Probably forgot deleting encountersMask when backporting from WOTLK or Cata.
I checked the 4 versions: Classic, TBC, Wotlk, Cata. Everywhere in the structure of the table has only 3 fields, but at the core is extracted and processing of 6-7 fields.
Column encountersMask is only in Wotlk and Cata.
Generally it is strange that in a cross-queries the kernel developers do not indicate the names of the tables in front of the fields, as this may cause errors when samples if fields in different tables have the same name.
/sql/base/characters.sql:
Core:
The result is errors in the log.
The table does not have enough fields? Or the code was taken from another version and was not fixed under the structure of the table?