涂名雷
                                            涂名雷
                                        
                                    Well, yes, I also encountered this issue before. Then I moved the definition codes outside and fixed it. It's a scala related issue, I'm not know more about it.
@strokyl the extension method `between` was applied to any [BaseTypedType](https://github.com/slick/slick/blob/3.3.x/slick/src/main/scala/slick/lifted/ExtensionMethods.scala#L198), which is super class of `JdbcType`. I can't find a way to disable it just for `array` types.
Yes, `slick-pg` didn't have good support for `geography`. It's majorly target to `geometry`.
Can you guys recommend any geography java sdk? _Currently `vividsolutions jts` or `locationtech jts` only support `geometry`._
@jdcohen220 seems not a good choice.
I finally self-made the geography types by extending jts geometry types, and added geography support . Can you guys help review and check it?
It's on a new branch `geography`. If it looks good, I'll merge it to branch `master`.
@evbo not easy, didn't find a good way out yet. :-(
Here's some codes about table/columns' definition: ```scala ... class A(tag: Tag) extends Table[(Int, String, String)](tag, "A") { def id = column[Int]("ID", O.PrimaryKey, O.AutoInc) def s1 = column[String]("S1") def s2 =...
@github-recordbay-de `pg_rational` is not a built-in or popular pg extension, and it lacks clear and stable descriptions about it's operators and functions, too. So I'd like not to develop support...