Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
deusaquilus committed Feb 5, 2019
1 parent e220e7e commit c48d1a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion quill-sql/src/main/scala/io/getquill/MyTestSql.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ object MyTestSql {
val q = quote {
query[Holder].join(query[Holder])
.on(_.value == _.value)
.map({case (a,b) => ((a.value, a.sv), (b.value, b.sv))})
.map({ case (a, b) => ((a.value, a.sv), (b.value, b.sv)) })
.map(_._1._2)
}

Expand Down
3 changes: 1 addition & 2 deletions quill-sql/src/main/scala/io/getquill/OracleDialect.scala
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ trait OracleDialect
if (e.name.startsWith("_"))
Escape.default(e.name).token
else
strategy.default(e.name).token
)
strategy.default(e.name).token)

override implicit def propertyTokenizer(implicit astTokenizer: Tokenizer[Ast], strategy: NamingStrategy): Tokenizer[Property] = {
Tokenizer[Property] {
Expand Down

0 comments on commit c48d1a6

Please sign in to comment.