File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed
main/scala/scalikejdbc/async Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
- version = 3.0 .7
1
+ version = 3.0 .8
2
2
trailingCommas = keep
3
3
docstrings.style = keep
4
4
indent.defnSite = 2
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ object AsyncConnectionPoolFactory extends AsyncConnectionPoolFactory {
61
61
// Heroku MySQL
62
62
63
63
// issue #5 Error: database name is too long
64
- // val defaultProperties = """?useUnicode=yes&characterEncoding=UTF-8&connectionCollation=utf8_general_ci"""
64
+ // val defaultProperties = """?useUnicode=yes&characterEncoding=UTF-8&connectionCollation=utf8_general_ci"""
65
65
val defaultProperties = " "
66
66
val addDefaultPropertiesIfNeeded = MysqlCustomProperties
67
67
.findFirstMatchIn(url)
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ private[scalikejdbc] class RowDataResultSet(
62
62
notvalid
63
63
64
64
override def clearWarnings (): Unit = {
65
- // noop
65
+ // noop
66
66
}
67
67
68
68
override def updateTimestamp (columnIndex : Int , x : Timestamp ): Unit = notvalid
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ object AccountId {
18
18
}
19
19
20
20
object Account extends SQLSyntaxSupport [Account ] {
21
- // override def columnNames
21
+ // override def columnNames
22
22
def apply (s : SyntaxProvider [Account ])(rs : WrappedResultSet ): Account =
23
23
apply(s.resultName)(rs)
24
24
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ object PersonId {
13
13
}
14
14
15
15
object Person extends SQLSyntaxSupport [Person ] {
16
- // override def columnNames
16
+ // override def columnNames
17
17
def apply (p : SyntaxProvider [Person ])(rs : WrappedResultSet ): Person =
18
18
apply(p.resultName)(rs)
19
19
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ class MySQLSampleSpec
181
181
column.isReactive -> false ,
182
182
column.createdAt -> createdTime
183
183
)
184
- // .returningId
184
+ // .returningId
185
185
}.updateAndReturnGeneratedKey.future()
186
186
}
187
187
// the generated key should be found
@@ -276,7 +276,7 @@ class MySQLSampleSpec
276
276
column.rating -> 2 ,
277
277
column.isReactive -> false ,
278
278
column.createdAt -> createdTime
279
- ) // .returningId
279
+ ) // .returningId
280
280
).updateAndReturnGeneratedKey.future()
281
281
}
282
282
val generatedId = Await .result(generatedIdFuture, 5 .seconds)
You can’t perform that action at this time.
0 commit comments