Use COALESCE rather than IFNULL
as this works on sqlite and postgres (postgres doesn't have IFNULL)pull/3166/head
parent
4d55b16faa
commit
3a62cacfb0
|
|
@ -88,7 +88,7 @@ class ProfileWorkerStore(SQLBaseStore):
|
|||
def f(txn):
|
||||
sql = (
|
||||
"UPDATE profiles SET batch = "
|
||||
"(SELECT IFNULL(MAX(batch), -1) + 1 FROM profiles) "
|
||||
"(SELECT COALESCE(MAX(batch), -1) + 1 FROM profiles) "
|
||||
"WHERE user_id in ("
|
||||
" SELECT user_id FROM profiles WHERE batch is NULL limit ?"
|
||||
")"
|
||||
|
|
|
|||
Loading…
Reference in New Issue