Skip to content

Commit

Permalink
Merge pull request apache#150 from arudenko/develop
Browse files Browse the repository at this point in the history
JDBCApps. Fixed typo in INSERT SQL statement
  • Loading branch information
pferrel committed Oct 7, 2015
2 parents f75e5d9 + 504d1fb commit dfe9b19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class JDBCApps(client: String, config: StorageClientConfig, prefix: String)
"""
} else {
sql"""
insert into $tableName values(${app.id}, ${app.name}, $app{description}())
insert into $tableName values(${app.id}, ${app.name}, ${app.description})
"""
}
Some(q.updateAndReturnGeneratedKey().apply().toInt)
Expand Down

0 comments on commit dfe9b19

Please sign in to comment.