You don't have a views column in your user table, which is normal. That query must be from some kind of hack. The normal showthread query updates the thread table.
PHP Code:
if ($noshutdownfunc) {
$DB_site->query("UPDATE thread SET views=views+1 WHERE threadid='$threadid'");
} else {
$shutdownqueries[]="UPDATE LOW_PRIORITY thread SET views=views+1 WHERE threadid='$threadid'";
}