涂名雷
                                            涂名雷
                                        
                                    Yes, you can send me a pull request. I'd like to merge it.
Just define `Tuple2[Int, Geometry]`, we can add `Tuple2[Seq[Int], Geometry]` support later if necessary.
@DhavalKolapkar do you mean `mutator`? _You can see its usage [here](https://github.com/slick/slick/blob/master/slick-testkit/src/main/scala/com/typesafe/slick/testkit/tests/MutateTest.scala)._
@DhavalKolapkar if mutator is not suitable, maybe you should try plain sql like this: ```scala sqlu"update promotionParticipants set statusHistory = statusHistory || $newStatusHistory where guidHash = $guid" ``` _p.s. here...
@lakshmankollipara here's the codes of `PlayJsonImplicits`, ```scala trait PlayJsonImplicits extends PlayJsonCodeGenSupport { import utils.JsonUtils.clean implicit val playJsonTypeMapper: JdbcType[JsValue] = new GenericJdbcType[JsValue]( pgjson, (v) => Json.parse(v), (v) => clean(Json.stringify(v)), hasLiteralForm =...
@1gorsh this part of your definitions ```scala implicit def vectorOfAddressesColumnExtensionMethods(c: Rep[Vector[Address]]): JsonColumnExtensionMethods[Address, Vector[Address]] = { new JsonColumnExtensionMethods[Address, Vector[Address]](c) } ``` is wrong. It should be ```scala implicit def vectorOfAddressesColumnExtensionMethods(c: Rep[Vector[Address]]):...
@1gorsh ok! 😄
Did some trying in branch [lateral](https://github.com/tminglei/slick-pg/tree/lateral). But not successful yet.
Hi @RomanHargrave, it works on my local. But I don't know whether there are problem on others' sides.
Can you provide more details?