Count capitalization

pull/29/head v1.5.0
Philipp Heckel 2021-11-29 11:48:34 -05:00
parent ccccae9aad
commit e3debf4315
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ const (
ORDER BY time ASC ORDER BY time ASC
` `
selectMessagesCountQuery = `SELECT COUNT(*) FROM messages` selectMessagesCountQuery = `SELECT COUNT(*) FROM messages`
selectMessageCountForTopicQuery = `SELECT count(*) FROM messages WHERE topic = ?` selectMessageCountForTopicQuery = `SELECT COUNT(*) FROM messages WHERE topic = ?`
selectTopicsQuery = `SELECT topic, MAX(time) FROM messages GROUP BY topic` selectTopicsQuery = `SELECT topic, MAX(time) FROM messages GROUP BY topic`
) )