Re: [hibernate-dev] byteman

2012-03-22 Thread Hardy Ferentschik
On Mar 20, 2012, at 1:27 PM, Steve Ebersole wrote: > I am curious Strong why you explicitly handle classes.jar (apparently > for MacOS) when it is already handled? Right, I think we should get away w/ just toolsJar = file("${System.getProperty('java.home')}/../lib/tools.jar") At leas

Re: [hibernate-dev] byteman

2012-03-22 Thread Sanne Grinovero
On 22 March 2012 09:31, Hardy Ferentschik wrote: > > On Mar 20, 2012, at 1:27 PM, Steve Ebersole wrote: > >> I am curious Strong why you explicitly handle classes.jar (apparently >> for MacOS) when it is already handled? > > Right, I think we should get away w/ just > >        toolsJar = file("${S

Re: [hibernate-dev] byteman

2012-03-22 Thread Hardy Ferentschik
Hi, > The jar seems to be correctly uploaded: > https://repository.jboss.org/nexus/content/groups/public-jboss/org/infinispan/infinispan-core/5.1.2.FINAL/ > > But I get your same error when running tests: > > * What went wrong: > Could not resolve all dependencies for configuration > ':hibernate

Re: [hibernate-dev] Quoted names

2012-03-22 Thread Dmitry Geraskov
I created jira issue for this as nobody replied. https://hibernate.onjira.com/browse/HHH-7195 19.03.2012 17:12, Dmitry Geraskov пишет: > Hi, guys, > > I am working on the hibernate tools code generation problem for tables > which has quoted names (name, schema or catalog has special > symbols(d

Re: [hibernate-dev] Quoted names

2012-03-22 Thread Steve Ebersole
Probably best. This is one of the main issue with the existing metamodel. There are no tests of it. There is virtually no doc. And noone wants to touch the code. Really I would have thought Max the best person to ask. On Thu 22 Mar 2012 06:48:37 AM CDT, Dmitry Geraskov wrote: > I created j

Re: [hibernate-dev] upgrade to gradle 1.0-m9

2012-03-22 Thread Steve Ebersole
Well for whatever reason, over the last week or 2 test runs on my system have been taking a very inordinate amount of time. Not sure what to chalk this up to though since a lot has been changing lately. On Wed 21 Mar 2012 10:43:18 AM CDT, Strong Liu wrote: > > On Mar 21, 2012, at 10:12 PM, Stev

Re: [hibernate-dev] [Hibernate-JIRA] Created: (HHH-7187) envers tests fail on other DBs except the default H2

2012-03-22 Thread Adam Warski
Hello, I'd say all tests are supposed to work on all DBs, but they were written only with running on H2 in mind. But I guess only a fraction of the failing tests actually use EnversTestingJtaBootstrap? What are the stacktraces? And what DBs do the tests fail on? Adam On Mar 19, 2012, at 11:24

Re: [hibernate-dev] [Hibernate-JIRA] Created: (HHH-7187) envers tests fail on other DBs except the default H2

2012-03-22 Thread Madhumita Sadhukhan
Stacktrace: ... 60 more Caused by: java.sql.SQLException: Cannot get connection for URL jdbc:mysql://vmg02.mw.lab.eng.bos.redhat.com:3306/dballo01;AUTOCOMMIT=OFF : Access denied for user 'dballo01'@'%' to database 'dballo01;AUTOCOMMIT=OFF' at org.enhydra.jdbc.standard.StandardDa

[hibernate-dev] HSEARCH and fix version as topic

2012-03-22 Thread Emmanuel Bernard
Sanne has moved the spatial queries issues out of 4.1 (rightly so) but entirely cleared the version number even for issues already fixed. I have created a temporary version `spatial` to carry issue fixed in the geo branch. We will merge this version with 4.2 or later if it really takes more time

Re: [hibernate-dev] HSEARCH and fix version as topic

2012-03-22 Thread Steve Ebersole
This is the route we went with metamodel work too. We have not integrated it back into master yet so I cant speak to devil-in-the-details. But its worked pretty well in terms of coop I think st...@hibernate.org http://hibernate.org On Mar 22, 2012 10:41 AM, "Emmanuel Bernard" wrote: > Sanne has

Re: [hibernate-dev] [Hibernate-JIRA] Created: (HHH-7187) envers tests fail on other DBs except the default H2

2012-03-22 Thread Łukasz Antoniak
Hello, Tests with ";INIT=CREATE SCHEMA IF NOT EXISTS ENVERS_AUDIT" appended to connection string should for sure run only agains H2. This basically creates second schema for audit tables. Not sure if other RDBMS systems provide similar option. Shall I move this test to src/test/main? There is

[hibernate-dev] Jenkins configuration?

2012-03-22 Thread Sanne Grinovero
Hi all, sorry if it's a naive question, I'm not understanding what is wrong this this CI job: http://hudson.qa.jboss.com/hudson/job/hibernate-search-master-windows/64/console It was working fine up to a couple of days ago, and there is nothing of interest in the configuration-diff view; seems it

Re: [hibernate-dev] [Hibernate-JIRA] Created: (HHH-7187) envers tests fail on other DBs except the default H2

2012-03-22 Thread Strong Liu
org.hibernate.envers.test.EnversTestingJtaBootstrap appends that ";AUTOCOMMIT=OFF" dataSource.setUrl(configValues.get(Environment.URL).toString() + ";AUTOCOMMIT=OFF"); - Best Regards, Strong Liu http://about.me/stliu/bio On Mar 22, 2012, at 11:15 PM, Ma