[hibernate-dev] Problems running matrix tests

2015-07-01 Thread Karel Maesen
I’v tried to run my matrix tests for hibernate-spatial and I’m running into some problems. First problem is that setting JAVA6_HOME on OS X didn't work because Gradle apparently can’t find the runtime jar (the Home layout of JDK 1.6 on Mac seems to be non-standard). I worked around that by poi

Re: [hibernate-dev] HQL and spatial

2015-09-02 Thread Karel Maesen
Hi Steve, Have a look at this table: http://www.hibernatespatial.org/documentation/03-dialects/01-overview/ It provides an overview of the HQL functions that are supported in Hibernate Spatial. They are currently registered into each concrete SpatialDialect. I think it might be a good start t

Re: [hibernate-dev] HQL and spatial

2015-09-09 Thread Karel Maesen
Hi Steve, > On 08 Sep 2015, at 22:29, Steve Ebersole wrote: > > What do you mean "have these functions integrated into HQL"? What you > describe is exactly how sql functions are supported as well. Perhaps you > mean defining standard support for spatial functions. Yes, precisely that > A

Re: [hibernate-dev] HQL and spatial

2015-11-09 Thread Karel Maesen
Hi Steve, > On 02 Nov 2015, at 16:16, Steve Ebersole wrote: > > Any further thoughts? > > I looked over the link you gave in regards to literals, but did not fully > understand. I'd prefer this follow some "escape syntax" form, beyond that > maybe you could just enumerate the literal types

Re: [hibernate-dev] http://www.hibernatespatial.org/

2016-02-20 Thread Karel Maesen
HI all, First, there seems to be a problem with the hibernate-spatial mailing list that I was unaware of. The user in question reached out to me yesterday. I will investigate shortly. Fair point about the website not mentioning the move to Hibernate 5. I will put up a message for this on the s

Re: [hibernate-dev] http://www.hibernatespatial.org/

2016-02-24 Thread Karel Maesen
L native chapter and then I have just > the OSGI and Envers chapters to review. > But since Hibernate Spatial is not covered at all, I think it's good to start > with Hibernate Spatial right after I'm done with the SQL native one. > > What do you think of this? > &g

Re: [hibernate-dev] http://www.hibernatespatial.org/

2016-03-02 Thread Karel Maesen
ith some steps to > build the User Guide. > After you review it, I'll collect all your findings improve it further. > > Vlad > > On Wed, Feb 24, 2016 at 8:30 PM, Karel Maesen wrote: > Hi Vlad, > > I think this is a good idea. I’m away on conference the second we

[hibernate-dev] Release bundle doesn't contain spatial lib

2016-03-18 Thread Karel Maesen
Hi all, A user recently asked where the hibernate-spatial jar could be found. The Quickstart states that it should be in the /lib directory, but at least recent bundles don't contain it (e.g. 5.1.0.Final). How can this be fixed? Regards, Karel ___ hib

Re: [hibernate-dev] http://www.hibernatespatial.org/

2016-04-17 Thread Karel Maesen
Hi Vlad, I've created a PR (#1334) that contains a number of corrections and additions for the User Guide. Regards, Karel On Wed, Mar 2, 2016 at 10:24 PM, Karel Maesen wrote: > Hi Vlad, > > Thanks for doing this already. It’s a good starting point. I’ll suggest a > number o

Re: [hibernate-dev] http://www.hibernatespatial.org/

2016-04-18 Thread Karel Maesen
gt; >> guide might not need to wait for his refactoring work to be completed? > >> > >> > > >> > Vlad > >> > > >> > On Sun, Apr 17, 2016 at 5:12 PM, Karel Maesen > >> wrote: > >> > > >> >>

Re: [hibernate-dev] Merging hibernate spatial Dialects with the core ones

2016-06-28 Thread Karel Maesen
It makes sense for some Dialects such as those for MySQL and MS SQL Server. Less so for Postgresql and Oracle Spatial because here the spatial capabilities need to be installed and configured separately (and even have versioning separate from the main database engine). I would favour an approach,

Re: [hibernate-dev] Merging hibernate spatial Dialects with the core ones

2016-06-28 Thread Karel Maesen
en not using the spatial stuff), it >> should remain a separate artifact - this is, should we plan to make >> Hibernate ORM JARs Jigsaw modules at some point. >> >> --Gunnar >> >> >> 2016-06-28 15:22 GMT+02:00 Karel Maesen : >> >>> It mak

Re: [hibernate-dev] Merging hibernate spatial Dialects with the core ones

2016-06-28 Thread Karel Maesen
*only* used to contribute Types and > SQLFunctions, > the above options would remove the need for having spatial dialects at all > and still allow hibernate-spatial to contribute its things. > > WDYT? > > > On Tue, Jun 28, 2016 at 9:18 AM Karel Maesen wrote: > &g

[hibernate-dev] ETA Hibernate-ORM 5.2.11 release?

2017-08-22 Thread Karel Maesen
Hi, I've got a user who is waiting for some months on a fix that is scheduled for the 5.2.11 release(HHH-11283 ). He's getting a bit impatient. Is there something I can tell him about an expected release date for 5.2.11? FYI: the issue is not a re

Re: [hibernate-dev] Hibernate Spatial - JTS update - compatibility issue

2018-09-05 Thread Karel Maesen
Hi Guillaume, We can do this in a 5.4. As a commenter on this issue correctly noted, geolatte-geom has already moved to 1.16.0-RC1, so the change in HS can follow quickly. We should wait for the official 1.16 release though before releasing it. I'll put the ticket into progress, and upgrade the

Re: [hibernate-dev] Hibernate JTS upgrade: migration notes required

2018-09-24 Thread Karel Maesen
Hi Guillaume, Thanks for pointing this out. I will take care of it. Regards, Karel On Mon, Sep 24, 2018 at 4:23 PM Guillaume Smet wrote: > Hi Karel, > > Back from vacation and I just saw this commit: > https://github.com/hibernate/hibernate-orm/commit/b3e56a5db71110d07a095762a788c53ef258bd01

[hibernate-dev] Problem using maven 2.2.1

2010-09-19 Thread Karel Maesen
Hi, When using mvn install on Hibernate Core, the jar was copied to my local repository with the extension *.docbook.style. When I uncomment the jdocbook-style-plugin in the parent pom.xml, the install works correctly. Also when I use maven 2.2.0. So I guess the jdocbook-style plugin doesn't

Re: [hibernate-dev] [HSEARCH] Geospatial indexing and queries

2011-12-19 Thread Karel Maesen
Hi Emmanuel, I didn't see your mail from 5/12, so I only now read your proposal. Sorry for the late reaction. I'll give you more feedback but here some quick notes. I would advise not to use JTS for this case. It's not intended for geographic coordinates (lat/long). That's why it has getX()/ge

Re: [hibernate-dev] [HSEARCH] Geospatial indexing and queries

2011-12-21 Thread Karel Maesen
Hi Emmanuel, My preference: .forLocation("location") .forLatitudeField("lat").forLongitudeField("long") Btw, I quite like "LatLong" as an alternative for the term "Coordinates" or "Location". It makes clear what the meaning is of the coordinates/location interface/method, and conditions the re

Re: [hibernate-dev] [HSEARCH] Geospatial indexing and queries

2011-12-21 Thread Karel Maesen
On 21 Dec 2011, at 18:32, Emmanuel Bernard wrote: > > Maybe `Coordinates` is a bad idea entirely and we should only use "free form > properties" like this Why not do this in two steps. Use the "free form properties" now for the first implementation. Later, after integration of Hibernate Spati

[hibernate-dev] problem running local matrix tests

2013-06-06 Thread Karel Maesen
rnate-spatial:matrix_postgis'. > No such property: project for class: > org.hibernate.build.gradle.testing.database.alloc.DatabaseAllocator Anyone an idea what I'm doing wrong? Btw, I did update my Gradle file to include: apply plugin: 'hibernate-matrix-testing

Re: [hibernate-dev] problem running local matrix tests

2013-06-11 Thread Karel Maesen
idation that that fix really was a fix... > > On 06/06/2013 02:48 PM, Karel Maesen wrote: >> Hi, >> >> I have local database configurations for matrix testing against spatial >> databases. With HHH-8235 support for matrix testing has been moved into a >> s

Re: [hibernate-dev] problem running local matrix tests

2013-06-12 Thread Karel Maesen
t generally > loading all stuff from resources. And even then, I am not seeing the loaded > hibernate.properties being used atm. > > > On Tue 11 Jun 2013 02:47:04 PM CDT, Karel Maesen wrote: >> >> I compiled it locally and the exception is no longer thrown. >> >