Skip to content
This repository was archived by the owner on Dec 3, 2019. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,8 @@ class PreparedStatementsSpec extends Specification with ConnectionHelper {

val create = """CREATE TEMPORARY TABLE posts (
| id INT NOT NULL AUTO_INCREMENT,
| some_text TEXT not null,
| some_text TEXT NOT NULL,
| some_date DATE,
| primary key (id) )""".stripMargin

val insert = "insert into posts (some_text) values (?)"
Expand Down Expand Up @@ -378,4 +379,4 @@ class PreparedStatementsSpec extends Specification with ConnectionHelper {

}

}
}