Commit f3f01613 authored by Yoshinori Okuji's avatar Yoshinori Okuji

Just a small fix. This should not matter in reality.

git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@184 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 39218146
...@@ -308,7 +308,7 @@ class MySQLDatabaseManager(DatabaseManager): ...@@ -308,7 +308,7 @@ class MySQLDatabaseManager(DatabaseManager):
try: try:
serial, compression, checksum, data = r[0] serial, compression, checksum, data = r[0]
r = q("""SELECT serial FROM obj r = q("""SELECT serial FROM obj
WHERE oid = %d AND serial > %d WHERE oid = %d AND serial >= %d
ORDER BY serial LIMIT 1""" \ ORDER BY serial LIMIT 1""" \
% (oid, before_tid)) % (oid, before_tid))
try: try:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment