Aldo Stracquadanio
Aldo Stracquadanio
Given this minimal `build.sbt`: ``` lazy val proj = (project in file(".")) .settings( scalaVersion := "2.11.7", scalacOptions ++= Seq("-Ywarn-unused-import"), libraryDependencies ++= Seq( "org.scala-lang.modules" %% "scala-pickling" % "0.10.1" ) ) ```...
With reference to: https://github.com/dscleaver/sbt-quickfix/issues/10 I understood why the quickfix doesn't get truncated sometimes: it has to do with the fact that clean builds are cached and fixing issues can get...
When you try streaming results from MySQL using the JDBC driver and do not provide any special parameter for the DB statements the driver will load the entire result set...