Damir Vandic

Results 82 comments of Damir Vandic

My 2 cents. > What commands should support plugin versions? asdf plugin-add is an obvious one, but it may be useful for other commands to take a plugin version argument...

I have a workaround: use hardcoded `import dao.ExtendedPgDriver.api._` in the DAO, instead of `import driver.api._` (which is the usual way of working with play-slick). This also means that I have...

I'll see if I can fix this, also implementing the example project with the new dependency injection constructs from Play 2.4. On Saturday, June 13, 2015, 涂名雷 [email protected] wrote: >...

Made a PR that fixes this issue (#169).

I just checked: it works with the 1.1.x branch of play-slick :+1: (had to manually publish it locally so that it uses slick 3.1-M1).

Hmm.. for me it worked. Can you replicate it in a dummy project you can post on Github?

For me, this occurs at random it seems (Postgres 9.4.5, 9.4-1204-jdbc41, slick-pg 0.10.1). I don't know if this is related to slick-pg, as it gets fed a date time that...

I tried the following: ``` override def all: Future[Seq[User]] = { db.run(sql"select USERS.birth_date from USERS".as[(String)]).flatMap { birthdates => println(birthdates) db.run(allUsers) } } ``` When I get the error, the `println`...

So you are able to reproduce it now? In my case the field is `TIMESTAMP WITH TIME ZONE`. I debugged in the `PgCommonJdbcTypes$GenericJdbcType#getValue` method, there the parsed string does not...

Ah yes it makes sense to have `SetRedirectTrailingSlash` only available on `LARS` (which is already the case). How about adding the following methods to the `IRouteGroup` interface (which `LARS` should...