summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn O. Pearce <sop@google.com>2011-06-20 08:07:46 -0700
committerShawn O. Pearce <sop@google.com>2011-06-24 09:21:38 -0700
commit30174be3842e3167ff01b76ff85811b013dca601 (patch)
tree858884e5df2086075f6e66951d1b97a62411085e
parentf846d778523bdcbaf748fbdfae39c6cc456be5b7 (diff)
Fix MySQL counter resets
MySQL resets its counters to 0 on server restarts, resulting in database errors on the next insertion attempt for common entities like account or change. gwtorm 1.1.5 was patched to leave in the dummy row that incremented the counter, ensuring the server will use MAX() + 1 instead of 1 on the next increment after restart. Bug: issue 518 Change-Id: I52cf5354f4fccf787fe8c62539ead6d5f6a0fead (cherry picked from commit 17ca55ff0f4553212c9fc53275d7cf75a0b6d188)
-rw-r--r--pom.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index c20a149cd0..c02d42cd61 100644
--- a/pom.xml
+++ b/pom.xml
@@ -47,7 +47,7 @@ limitations under the License.
<properties>
<jgitVersion>0.12.1.53-g5ec4977</jgitVersion>
- <gwtormVersion>1.1.4</gwtormVersion>
+ <gwtormVersion>1.1.5</gwtormVersion>
<gwtjsonrpcVersion>1.2.3</gwtjsonrpcVersion>
<gwtexpuiVersion>1.2.2</gwtexpuiVersion>
<gwtVersion>2.1.1</gwtVersion>