From 2fd73d677c7b38e8ccd1e1cf0c0a828bf9bf523c Mon Sep 17 00:00:00 2001 From: takezoe Date: Fri, 26 Apr 2013 18:20:45 +0900 Subject: [PATCH] Fixed typo of the SQL file name. --- src/main/scala/util/AutoUpdate.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/util/AutoUpdate.scala b/src/main/scala/util/AutoUpdate.scala index 680180b9e..e4ecb8870 100644 --- a/src/main/scala/util/AutoUpdate.scala +++ b/src/main/scala/util/AutoUpdate.scala @@ -25,7 +25,7 @@ object AutoUpdate { * If corresponding SQL file does not exist, this method do nothing. */ def update(conn: Connection): Unit = { - val sqlPath = "update/%d_%d.sq".format(majorVersion, minorVersion) + val sqlPath = "update/%d_%d.sql".format(majorVersion, minorVersion) val in = Thread.currentThread.getContextClassLoader.getResourceAsStream(sqlPath) if(in != null){ val sql = IOUtils.toString(in)