Skip to content

Commit

Permalink
[mysql] table names should be case sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Marshall committed Dec 26, 2013
1 parent 51273e5 commit e5807ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/music/MusicDatabase.cpp
Expand Up @@ -4076,7 +4076,7 @@ bool CMusicDatabase::UpdateOldVersion(int version)
" strDied, strDisbanded, strYearsActive, "
" strImage, strFanart "
" FROM artist "
" LEFT JOIN artistinfo ON artist.idArtist = artistInfo.idArtist");
" LEFT JOIN artistinfo ON artist.idArtist = artistinfo.idArtist");
m_pDS->exec(PrepareSQL("UPDATE artist_new SET lastScraped='%s' WHERE idArtist IN (SELECT idArtist FROM artistinfo)", CDateTime::GetCurrentDateTime().GetAsDBDateTime().c_str()));
m_pDS->exec("DROP TABLE artist");
m_pDS->exec("DROP TABLE artistinfo");
Expand Down

0 comments on commit e5807ec

Please sign in to comment.