<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0">
	
	<id>tag:openjpa.208410.n2.nabble.com,2006:forum-210739</id>
	<title>Nabble - OpenJPA Developers</title>
	<updated>2013-05-24T14:47:32Z</updated>
	<link rel="self" type="application/atom+xml" href="http://openjpa.208410.n2.nabble.com/OpenJPA-Developers-f210739.xml" />
	<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/OpenJPA-Developers-f210739.html" />
	<subtitle type="html"></subtitle>
	
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7584020</id>
		<title>[jira] [Updated] (OPENJPA-2387) Schema name is incorrectly included in length of Sequence name.</title>
		<published>2013-05-24T09:58:20Z</published>
		<updated>2013-05-24T09:58:20Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[ &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2387?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2387?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&lt;/a&gt;&amp;nbsp;]
&lt;br/&gt;&lt;br/&gt;Heath Thomann updated OPENJPA-2387:
&lt;br/&gt;-----------------------------------
&lt;br/&gt;&lt;br/&gt;&amp;nbsp; &amp;nbsp; Attachment: OPENJPA-2387-2.2.1.x.patch
&lt;br/&gt;&lt;br/&gt;Providing a patch to resolve the issue.
&lt;br/&gt;&lt;br/&gt;Thanks,
&lt;br/&gt;&lt;br/&gt;Heath
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; Schema name is incorrectly included in length of Sequence name.
&lt;br/&gt;&amp;gt; ---------------------------------------------------------------
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: OPENJPA-2387
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2387&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2387&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: OpenJPA
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Components: sql
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: 2.3.0, 2.2.2, 2.2.1.1
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Heath Thomann
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Heath Thomann
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: OPENJPA-2387-2.2.1.x.patch
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; Take the following entity definition:
&lt;br/&gt;&amp;gt; @Entity @Table(name=&amp;quot;LONG_NAME_ENTITY&amp;quot;)
&lt;br/&gt;&amp;gt; @SequenceGenerator(name=&amp;quot;longSequenceNameSequence&amp;quot;,sequenceName=&amp;quot;A_TWENTY_NINE_CHAR_LENGTH_SEQ&amp;quot;)
&lt;br/&gt;&amp;gt; public class LongSequenceNameEntity implements Serializable
&lt;br/&gt;&amp;gt; As can be seen, a Sequence is defined with a name which is 29 characters long. &amp;nbsp;On a Database such as Oracle which has a 30 character limit on sequence names, among others names, this sequence is perfectly legal. &amp;nbsp;However, when a schema name is tacked onto this by OpenJPA, OpenJPA code incorrectly counts the characters of the schema in the length of the sequence name. &amp;nbsp; As such, the following exception will occur:
&lt;br/&gt;&amp;gt; Caused by: &amp;lt;openjpa-2.2.1.1-SNAPSHOT-r422266:1445654M nonfatal user error&amp;gt; org.apache.openjpa.persistence.ArgumentException: Sequence name &amp;quot;HTHOMANN.A_TWENTY_NINE_CHAR_LENGTH_SEQ&amp;quot; is 38-character long. The database allows maximum 30-character for a sequence name.
&lt;br/&gt;&amp;gt; 	at org.apache.openjpa.jdbc.sql.DBDictionary.checkNameLength(DBDictionary.java:5358)
&lt;br/&gt;&amp;gt; 	at org.apache.openjpa.jdbc.sql.DBDictionary.commonCreateAlterSequenceSQL(DBDictionary.java:3492)
&lt;br/&gt;&amp;gt; 	at org.apache.openjpa.jdbc.sql.DBDictionary.getAlterSequenceSQL(DBDictionary.java:3469)
&lt;br/&gt;&amp;gt; The DBDictionary.checkNameLength in this case is counting the characters of the schema name, and sequence name. &amp;nbsp;The length of the schema name should not be included in the length of the sequence.
&lt;/div&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Updated-OPENJPA-2387-Schema-name-is-incorrectly-included-in-length-of-Sequence-name-tp7584020.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7584019</id>
		<title>[jira] [Updated] (OPENJPA-2387) Schema name is incorrectly included in length of Sequence name.</title>
		<published>2013-05-24T09:56:19Z</published>
		<updated>2013-05-24T09:56:19Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[ &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2387?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2387?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&lt;/a&gt;&amp;nbsp;]
&lt;br/&gt;&lt;br/&gt;Heath Thomann updated OPENJPA-2387:
&lt;br/&gt;-----------------------------------
&lt;br/&gt;&lt;br/&gt;&amp;nbsp; &amp;nbsp; Patch Info: Patch Available
&lt;br/&gt;&amp;nbsp; &amp;nbsp; 
&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; Schema name is incorrectly included in length of Sequence name.
&lt;br/&gt;&amp;gt; ---------------------------------------------------------------
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: OPENJPA-2387
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2387&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2387&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: OpenJPA
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Components: sql
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: 2.3.0, 2.2.2, 2.2.1.1
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Heath Thomann
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Heath Thomann
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; Take the following entity definition:
&lt;br/&gt;&amp;gt; @Entity @Table(name=&amp;quot;LONG_NAME_ENTITY&amp;quot;)
&lt;br/&gt;&amp;gt; @SequenceGenerator(name=&amp;quot;longSequenceNameSequence&amp;quot;,sequenceName=&amp;quot;A_TWENTY_NINE_CHAR_LENGTH_SEQ&amp;quot;)
&lt;br/&gt;&amp;gt; public class LongSequenceNameEntity implements Serializable
&lt;br/&gt;&amp;gt; As can be seen, a Sequence is defined with a name which is 29 characters long. &amp;nbsp;On a Database such as Oracle which has a 30 character limit on sequence names, among others names, this sequence is perfectly legal. &amp;nbsp;However, when a schema name is tacked onto this by OpenJPA, OpenJPA code incorrectly counts the characters of the schema in the length of the sequence name. &amp;nbsp; As such, the following exception will occur:
&lt;br/&gt;&amp;gt; Caused by: &amp;lt;openjpa-2.2.1.1-SNAPSHOT-r422266:1445654M nonfatal user error&amp;gt; org.apache.openjpa.persistence.ArgumentException: Sequence name &amp;quot;HTHOMANN.A_TWENTY_NINE_CHAR_LENGTH_SEQ&amp;quot; is 38-character long. The database allows maximum 30-character for a sequence name.
&lt;br/&gt;&amp;gt; 	at org.apache.openjpa.jdbc.sql.DBDictionary.checkNameLength(DBDictionary.java:5358)
&lt;br/&gt;&amp;gt; 	at org.apache.openjpa.jdbc.sql.DBDictionary.commonCreateAlterSequenceSQL(DBDictionary.java:3492)
&lt;br/&gt;&amp;gt; 	at org.apache.openjpa.jdbc.sql.DBDictionary.getAlterSequenceSQL(DBDictionary.java:3469)
&lt;br/&gt;&amp;gt; The DBDictionary.checkNameLength in this case is counting the characters of the schema name, and sequence name. &amp;nbsp;The length of the schema name should not be included in the length of the sequence.
&lt;/div&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Updated-OPENJPA-2387-Schema-name-is-incorrectly-included-in-length-of-Sequence-name-tp7584019.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7584018</id>
		<title>[jira] [Created] (OPENJPA-2387) Schema name is incorrectly included in length of Sequence name.</title>
		<published>2013-05-24T09:38:20Z</published>
		<updated>2013-05-24T09:38:20Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			Heath Thomann created OPENJPA-2387:
&lt;br/&gt;--------------------------------------
&lt;br/&gt;&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Summary: Schema name is incorrectly included in length of Sequence name.
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: OPENJPA-2387
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2387&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2387&lt;/a&gt;&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: OpenJPA
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: sql
&lt;br/&gt;&amp;nbsp; &amp;nbsp; Affects Versions: 2.2.2, 2.3.0, 2.2.1.1
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Heath Thomann
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Heath Thomann
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;Take the following entity definition:
&lt;br/&gt;&lt;br/&gt;@Entity @Table(name=&amp;quot;LONG_NAME_ENTITY&amp;quot;)
&lt;br/&gt;@SequenceGenerator(name=&amp;quot;longSequenceNameSequence&amp;quot;,sequenceName=&amp;quot;A_TWENTY_NINE_CHAR_LENGTH_SEQ&amp;quot;)
&lt;br/&gt;public class LongSequenceNameEntity implements Serializable
&lt;br/&gt;&lt;br/&gt;As can be seen, a Sequence is defined with a name which is 29 characters long. &amp;nbsp;On a Database such as Oracle which has a 30 character limit on sequence names, among others names, this sequence is perfectly legal. &amp;nbsp;However, when a schema name is tacked onto this by OpenJPA, OpenJPA code incorrectly counts the characters of the schema in the length of the sequence name. &amp;nbsp; As such, the following exception will occur:
&lt;br/&gt;&lt;br/&gt;Caused by: &amp;lt;openjpa-2.2.1.1-SNAPSHOT-r422266:1445654M nonfatal user error&amp;gt; org.apache.openjpa.persistence.ArgumentException: Sequence name &amp;quot;HTHOMANN.A_TWENTY_NINE_CHAR_LENGTH_SEQ&amp;quot; is 38-character long. The database allows maximum 30-character for a sequence name.
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.openjpa.jdbc.sql.DBDictionary.checkNameLength(DBDictionary.java:5358)
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.openjpa.jdbc.sql.DBDictionary.commonCreateAlterSequenceSQL(DBDictionary.java:3492)
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.openjpa.jdbc.sql.DBDictionary.getAlterSequenceSQL(DBDictionary.java:3469)
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;The DBDictionary.checkNameLength in this case is counting the characters of the schema name, and sequence name. &amp;nbsp;The length of the schema name should not be included in the length of the sequence.
&lt;br/&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Created-OPENJPA-2387-Schema-name-is-incorrectly-included-in-length-of-Sequence-name-tp7584018.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7584014</id>
		<title>Re: differents constraints?</title>
		<published>2013-05-23T12:50:47Z</published>
		<updated>2013-05-23T12:50:47Z</updated>
		<author>
			<name>Kevin Sutter</name>
		</author>
		<content type="html">
			&amp;gt; &amp;nbsp;Ignoring our old constraints we are all green.
&lt;br/&gt;&lt;br/&gt;Not sure I follow. &amp;nbsp;Who or what is ignoring the old constraints? &amp;nbsp;And,
&lt;br/&gt;whatever process this is, you are green with the 2.3.0-SNAPSHOT?
&lt;br/&gt;&lt;br/&gt;&amp;gt; &amp;nbsp;The diff between both generation are constraints which are not exactly
&lt;br/&gt;the
&lt;br/&gt;same (one got a derby &amp;quot;reference&amp;quot; in the constraint where the other
&lt;br/&gt;generation ignored it)
&lt;br/&gt;&lt;br/&gt;Sorry, I'm not following this either, Romain. &amp;nbsp;Can you narrow down the EJB3
&lt;br/&gt;test to produce the issue? &amp;nbsp;I'm just now following what changed where and
&lt;br/&gt;what's not working with 2.3.0-SNAPSHOT.
&lt;br/&gt;&lt;br/&gt;Thanks, Kevin
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;On Thu, May 23, 2013 at 9:05 AM, Romain Manni-Bucau
&lt;br/&gt;&amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7584014&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;wrote:
&lt;br/&gt;&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; that's an ejb 3 test playing with derived id. We kept the database used
&lt;br/&gt;&amp;gt; with openjpa 2.2.0 upgrading the library to 2.3.0-SNAPSHOT and saw the
&lt;br/&gt;&amp;gt; failure at this moment.
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; Ignoring our old constraints we are all green.
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; The diff between both generation are constraints which are not exactly the
&lt;br/&gt;&amp;gt; same (one got a derby &amp;quot;reference&amp;quot; in the constraint where the other
&lt;br/&gt;&amp;gt; generation ignored it)
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; *Romain Manni-Bucau*
&lt;br/&gt;&amp;gt; *Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;&amp;gt; *Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;
&lt;br/&gt;&amp;gt; &lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; *LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; *Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; 2013/5/23 Kevin Sutter &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7584014&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; Hi Romain,
&lt;br/&gt;&amp;gt; &amp;gt; Nothing is jumping out at me... &amp;nbsp;What &amp;quot;TomEE TCK&amp;quot; are you referring to?
&lt;br/&gt;&amp;gt; &amp;nbsp;We
&lt;br/&gt;&amp;gt; &amp;gt; run the JPA 2.0 TCK on every branch (including trunk) and the logs are
&lt;br/&gt;&amp;gt; all
&lt;br/&gt;&amp;gt; &amp;gt; clean as of May 21. &amp;nbsp;(It looks like there was a comm problem with
&lt;br/&gt;&amp;gt; &amp;gt; communicating with svn last night, so that TCK run didn't kick off.)
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; You also indicated that the ddl for altering the table constraints didn't
&lt;br/&gt;&amp;gt; &amp;gt; get generated with trunk? &amp;nbsp;I'm not aware of any changes in our mapping
&lt;br/&gt;&amp;gt; tool
&lt;br/&gt;&amp;gt; &amp;gt; that would have changed that behavior. &amp;nbsp;Are you starting with a fresh
&lt;br/&gt;&amp;gt; &amp;gt; database? &amp;nbsp;Or, are you running with the same derby database that was used
&lt;br/&gt;&amp;gt; &amp;gt; for the 2.2.0 run?
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; We'll probably need more investigation on what exactly is different
&lt;br/&gt;&amp;gt; between
&lt;br/&gt;&amp;gt; &amp;gt; your 2.2.0 test runs and the trunk test runs.
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; Thanks,
&lt;br/&gt;&amp;gt; &amp;gt; Kevin
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; On Thu, May 23, 2013 at 7:14 AM, Romain Manni-Bucau
&lt;br/&gt;&amp;gt; &amp;gt; &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7584014&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;wrote:
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; Hi guys,
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; on TomEE TCKs we were used to get some SQL constraints on a derby
&lt;br/&gt;&amp;gt; &amp;gt; database
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; like:
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; ALTER TABLE A ADD CONSTRAINT C FOREIGN KEY (ID) REFERENCES B (ID);
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; or the almost same with composed keys (string, string).
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; Basically all was green with openjpa 2.2.0 but since openjpa
&lt;br/&gt;&amp;gt; &amp;gt; 2.3.0-SNAPSHOT
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; we get exceptions because of these constraints. Moreover the ddl
&lt;br/&gt;&amp;gt; doesn't
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; generate them.
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; Here the exception:
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; Caused by: org.apache.openjpa.lib.jdbc.ReportingSQLException: DELETE on
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; table 'X' caused a violation of foreign key constraint 'C' for key
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; (aaa,bbb). &amp;nbsp;The statement has been rolled back. {prepstmnt 450145810
&lt;br/&gt;&amp;gt; &amp;gt; DELETE
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; FROM X WHERE KEY1 = ? AND KEY2 = ?} [code=-1, state=23503]
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; at
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator.wrap(LoggingConnectionDecorator.java:219)
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; at
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator.wrap(LoggingConnectionDecorator.java:195)
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;at
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator.access$1000(LoggingConnectionDecorator.java:59)
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; at
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator$LoggingConnection$LoggingPreparedStatement.executeUpdate(LoggingConnectionDecorator.java:1134)
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;at
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.lib.jdbc.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:275)
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; at
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.jdbc.kernel.JDBCStoreManager$CancelPreparedStatement.executeUpdate(JDBCStoreManager.java:1792)
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;at
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.jdbc.kernel.PreparedStatementManagerImpl.executeUpdate(PreparedStatementManagerImpl.java:268)
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; at
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.jdbc.kernel.PreparedStatementManagerImpl.flushAndUpdate(PreparedStatementManagerImpl.java:119)
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; Anything known changed? Is it a regression?
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; *Romain Manni-Bucau*
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; *Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; *Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; *LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; *Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&lt;/div&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/differents-constraints-tp7584006p7584014.html" />
		<thr:in-reply-to ref="tag:openjpa.208410.n2.nabble.com,2006:post-7584010"/>
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7584012</id>
		<title>[jira] [Created] (OPENJPA-2386) Support for JAVA 8</title>
		<published>2013-05-23T09:06:20Z</published>
		<updated>2013-05-23T09:06:20Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			Kevin Sutter created OPENJPA-2386:
&lt;br/&gt;-------------------------------------
&lt;br/&gt;&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Summary: Support for JAVA 8
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: OPENJPA-2386
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2386&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2386&lt;/a&gt;&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: OpenJPA
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Improvement
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: build / infrastructure, Enhance, jpa
&lt;br/&gt;&amp;nbsp; &amp;nbsp; Affects Versions: 2.3.0
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Kevin Sutter
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;A few different aspects exist for the support of Java 8. &amp;nbsp;The first being tolerance of the Java 8 runtime. &amp;nbsp;If OpenJPA and the application are built and enhanced with Java 7 (or Java 6), then will these class files execute in a Java 8 environment? &amp;nbsp;My assumption is &amp;quot;yes&amp;quot; since this would be consistent with our initial experiences with Java 7. &amp;nbsp;But, some testing will be required to verify this.
&lt;br/&gt;&lt;br/&gt;The next aspect is the building of the application Entities with Java 8. &amp;nbsp;Building and enhancing Java Entity class files with Java 8 looks to be hazardous... &amp;nbsp;The first indication is that ASM doesn't seem to handle the Java 8 class file format. &amp;nbsp;And, if ASM doesn't handle it, then I'm sure that Serp doesn't handle it either. &amp;nbsp;Now, whether our use of ASM as a post-processor for Serp will suffice this time around, I have no idea. &amp;nbsp;
&lt;br/&gt;&lt;br/&gt;This brings back the question of dropping Serp support altogether and going the ASM route (&lt;a href=&quot;http://openjpa.208410.n2.nabble.com/DISCUSS-Java7-and-Serp-td6951682.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://openjpa.208410.n2.nabble.com/DISCUSS-Java7-and-Serp-td6951682.html&lt;/a&gt;). &amp;nbsp;I know there's been some interest in this in the past.
&lt;br/&gt;&lt;br/&gt;A longer-term aspect is when do we actually build OpenJPA with Java 8 and take advantage (exploit) of the new features. &amp;nbsp;I think we have a long ways before we have to cross that hurdle. &amp;nbsp;When we start developing JPA 2.1, we'll probably have to upgrade our build process to use Java 7. &amp;nbsp;So, we're probably on the same type of cycle for Java 8 for building OpenJPA (when it's required by Java EE 8).
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Created-OPENJPA-2386-Support-for-JAVA-8-tp7584012.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7584010</id>
		<title>Re: differents constraints?</title>
		<published>2013-05-23T07:05:11Z</published>
		<updated>2013-05-23T07:05:11Z</updated>
		<author>
			<name>Romain Manni-Bucau</name>
		</author>
		<content type="html">
			that's an ejb 3 test playing with derived id. We kept the database used
&lt;br/&gt;with openjpa 2.2.0 upgrading the library to 2.3.0-SNAPSHOT and saw the
&lt;br/&gt;failure at this moment.
&lt;br/&gt;&lt;br/&gt;Ignoring our old constraints we are all green.
&lt;br/&gt;&lt;br/&gt;The diff between both generation are constraints which are not exactly the
&lt;br/&gt;same (one got a derby &amp;quot;reference&amp;quot; in the constraint where the other
&lt;br/&gt;generation ignored it)
&lt;br/&gt;&lt;br/&gt;*Romain Manni-Bucau*
&lt;br/&gt;*Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;*Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;&lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;*LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;*Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;2013/5/23 Kevin Sutter &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7584010&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;
&lt;br/&gt;&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; Hi Romain,
&lt;br/&gt;&amp;gt; Nothing is jumping out at me... &amp;nbsp;What &amp;quot;TomEE TCK&amp;quot; are you referring to? &amp;nbsp;We
&lt;br/&gt;&amp;gt; run the JPA 2.0 TCK on every branch (including trunk) and the logs are all
&lt;br/&gt;&amp;gt; clean as of May 21. &amp;nbsp;(It looks like there was a comm problem with
&lt;br/&gt;&amp;gt; communicating with svn last night, so that TCK run didn't kick off.)
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; You also indicated that the ddl for altering the table constraints didn't
&lt;br/&gt;&amp;gt; get generated with trunk? &amp;nbsp;I'm not aware of any changes in our mapping tool
&lt;br/&gt;&amp;gt; that would have changed that behavior. &amp;nbsp;Are you starting with a fresh
&lt;br/&gt;&amp;gt; database? &amp;nbsp;Or, are you running with the same derby database that was used
&lt;br/&gt;&amp;gt; for the 2.2.0 run?
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; We'll probably need more investigation on what exactly is different between
&lt;br/&gt;&amp;gt; your 2.2.0 test runs and the trunk test runs.
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; Thanks,
&lt;br/&gt;&amp;gt; Kevin
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; On Thu, May 23, 2013 at 7:14 AM, Romain Manni-Bucau
&lt;br/&gt;&amp;gt; &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7584010&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;wrote:
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; Hi guys,
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; on TomEE TCKs we were used to get some SQL constraints on a derby
&lt;br/&gt;&amp;gt; database
&lt;br/&gt;&amp;gt; &amp;gt; like:
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; ALTER TABLE A ADD CONSTRAINT C FOREIGN KEY (ID) REFERENCES B (ID);
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; or the almost same with composed keys (string, string).
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; Basically all was green with openjpa 2.2.0 but since openjpa
&lt;br/&gt;&amp;gt; 2.3.0-SNAPSHOT
&lt;br/&gt;&amp;gt; &amp;gt; we get exceptions because of these constraints. Moreover the ddl doesn't
&lt;br/&gt;&amp;gt; &amp;gt; generate them.
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; Here the exception:
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; Caused by: org.apache.openjpa.lib.jdbc.ReportingSQLException: DELETE on
&lt;br/&gt;&amp;gt; &amp;gt; table 'X' caused a violation of foreign key constraint 'C' for key
&lt;br/&gt;&amp;gt; &amp;gt; (aaa,bbb). &amp;nbsp;The statement has been rolled back. {prepstmnt 450145810
&lt;br/&gt;&amp;gt; DELETE
&lt;br/&gt;&amp;gt; &amp;gt; FROM X WHERE KEY1 = ? AND KEY2 = ?} [code=-1, state=23503]
&lt;br/&gt;&amp;gt; &amp;gt; at
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator.wrap(LoggingConnectionDecorator.java:219)
&lt;br/&gt;&amp;gt; &amp;gt; at
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator.wrap(LoggingConnectionDecorator.java:195)
&lt;br/&gt;&amp;gt; &amp;gt; &amp;nbsp;at
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator.access$1000(LoggingConnectionDecorator.java:59)
&lt;br/&gt;&amp;gt; &amp;gt; at
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator$LoggingConnection$LoggingPreparedStatement.executeUpdate(LoggingConnectionDecorator.java:1134)
&lt;br/&gt;&amp;gt; &amp;gt; &amp;nbsp;at
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.lib.jdbc.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:275)
&lt;br/&gt;&amp;gt; &amp;gt; at
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.jdbc.kernel.JDBCStoreManager$CancelPreparedStatement.executeUpdate(JDBCStoreManager.java:1792)
&lt;br/&gt;&amp;gt; &amp;gt; &amp;nbsp;at
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.jdbc.kernel.PreparedStatementManagerImpl.executeUpdate(PreparedStatementManagerImpl.java:268)
&lt;br/&gt;&amp;gt; &amp;gt; at
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.jdbc.kernel.PreparedStatementManagerImpl.flushAndUpdate(PreparedStatementManagerImpl.java:119)
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; Anything known changed? Is it a regression?
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; *Romain Manni-Bucau*
&lt;br/&gt;&amp;gt; &amp;gt; *Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;&amp;gt; &amp;gt; *Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;
&lt;br/&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; *LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt; *Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&lt;/div&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/differents-constraints-tp7584006p7584010.html" />
		<thr:in-reply-to ref="tag:openjpa.208410.n2.nabble.com,2006:post-7584009"/>
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7584009</id>
		<title>Re: differents constraints?</title>
		<published>2013-05-23T06:55:29Z</published>
		<updated>2013-05-23T06:55:29Z</updated>
		<author>
			<name>Kevin Sutter</name>
		</author>
		<content type="html">
			Hi Romain,
&lt;br/&gt;Nothing is jumping out at me... &amp;nbsp;What &amp;quot;TomEE TCK&amp;quot; are you referring to? &amp;nbsp;We
&lt;br/&gt;run the JPA 2.0 TCK on every branch (including trunk) and the logs are all
&lt;br/&gt;clean as of May 21. &amp;nbsp;(It looks like there was a comm problem with
&lt;br/&gt;communicating with svn last night, so that TCK run didn't kick off.)
&lt;br/&gt;&lt;br/&gt;You also indicated that the ddl for altering the table constraints didn't
&lt;br/&gt;get generated with trunk? &amp;nbsp;I'm not aware of any changes in our mapping tool
&lt;br/&gt;that would have changed that behavior. &amp;nbsp;Are you starting with a fresh
&lt;br/&gt;database? &amp;nbsp;Or, are you running with the same derby database that was used
&lt;br/&gt;for the 2.2.0 run?
&lt;br/&gt;&lt;br/&gt;We'll probably need more investigation on what exactly is different between
&lt;br/&gt;your 2.2.0 test runs and the trunk test runs.
&lt;br/&gt;&lt;br/&gt;Thanks,
&lt;br/&gt;Kevin
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;On Thu, May 23, 2013 at 7:14 AM, Romain Manni-Bucau
&lt;br/&gt;&amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7584009&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;wrote:
&lt;br/&gt;&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; Hi guys,
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; on TomEE TCKs we were used to get some SQL constraints on a derby database
&lt;br/&gt;&amp;gt; like:
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; ALTER TABLE A ADD CONSTRAINT C FOREIGN KEY (ID) REFERENCES B (ID);
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; or the almost same with composed keys (string, string).
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; Basically all was green with openjpa 2.2.0 but since openjpa 2.3.0-SNAPSHOT
&lt;br/&gt;&amp;gt; we get exceptions because of these constraints. Moreover the ddl doesn't
&lt;br/&gt;&amp;gt; generate them.
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; Here the exception:
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; Caused by: org.apache.openjpa.lib.jdbc.ReportingSQLException: DELETE on
&lt;br/&gt;&amp;gt; table 'X' caused a violation of foreign key constraint 'C' for key
&lt;br/&gt;&amp;gt; (aaa,bbb). &amp;nbsp;The statement has been rolled back. {prepstmnt 450145810 DELETE
&lt;br/&gt;&amp;gt; FROM X WHERE KEY1 = ? AND KEY2 = ?} [code=-1, state=23503]
&lt;br/&gt;&amp;gt; at
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator.wrap(LoggingConnectionDecorator.java:219)
&lt;br/&gt;&amp;gt; at
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator.wrap(LoggingConnectionDecorator.java:195)
&lt;br/&gt;&amp;gt; &amp;nbsp;at
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator.access$1000(LoggingConnectionDecorator.java:59)
&lt;br/&gt;&amp;gt; at
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator$LoggingConnection$LoggingPreparedStatement.executeUpdate(LoggingConnectionDecorator.java:1134)
&lt;br/&gt;&amp;gt; &amp;nbsp;at
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.lib.jdbc.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:275)
&lt;br/&gt;&amp;gt; at
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.jdbc.kernel.JDBCStoreManager$CancelPreparedStatement.executeUpdate(JDBCStoreManager.java:1792)
&lt;br/&gt;&amp;gt; &amp;nbsp;at
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.jdbc.kernel.PreparedStatementManagerImpl.executeUpdate(PreparedStatementManagerImpl.java:268)
&lt;br/&gt;&amp;gt; at
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; org.apache.openjpa.jdbc.kernel.PreparedStatementManagerImpl.flushAndUpdate(PreparedStatementManagerImpl.java:119)
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; Anything known changed? Is it a regression?
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; *Romain Manni-Bucau*
&lt;br/&gt;&amp;gt; *Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;&amp;gt; *Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;
&lt;br/&gt;&amp;gt; &lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; *LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; *Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt;
&lt;br/&gt;&lt;/div&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/differents-constraints-tp7584006p7584009.html" />
		<thr:in-reply-to ref="tag:openjpa.208410.n2.nabble.com,2006:post-7584006"/>
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7584008</id>
		<title>[jira] [Closed] (OPENJPA-2385) PrePersist/PreUpdate not invoked</title>
		<published>2013-05-23T06:25:21Z</published>
		<updated>2013-05-23T06:25:21Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[ &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2385?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2385?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&lt;/a&gt;&amp;nbsp;]
&lt;br/&gt;&lt;br/&gt;Guillaume Chauvet closed OPENJPA-2385.
&lt;br/&gt;--------------------------------------
&lt;br/&gt;&lt;br/&gt;&amp;nbsp; &amp;nbsp; Resolution: Not A Problem
&lt;br/&gt;&lt;br/&gt;I found my error for this unitary test : just remove &amp;quot;final&amp;quot; to the @PrePersist method....
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; PrePersist/PreUpdate not invoked
&lt;br/&gt;&amp;gt; --------------------------------
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: OPENJPA-2385
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2385&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2385&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: OpenJPA
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: 2.2.0, 2.2.1, 2.2.2, 2.2.3
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Guillaume Chauvet
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: OPENJPA-2385.zip
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; In the OpenJPA user manual, section 3.1 &amp;quot; Callback Methods&amp;quot; we read this :
&lt;br/&gt;&amp;gt; PrePersist: Methods marked with this annotation will be invoked before an object is persisted. This could be used for assigning primary key values to persistent objects. This is equivalent to the XML element tag pre-persist.
&lt;br/&gt;&amp;gt; But this is not the behavior obtained.
&lt;/div&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Closed-OPENJPA-2385-PrePersist-PreUpdate-not-invoked-tp7584008.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7584006</id>
		<title>differents constraints?</title>
		<published>2013-05-23T05:14:43Z</published>
		<updated>2013-05-23T05:14:43Z</updated>
		<author>
			<name>Romain Manni-Bucau</name>
		</author>
		<content type="html">
			Hi guys,
&lt;br/&gt;&lt;br/&gt;on TomEE TCKs we were used to get some SQL constraints on a derby database
&lt;br/&gt;like:
&lt;br/&gt;&lt;br/&gt;ALTER TABLE A ADD CONSTRAINT C FOREIGN KEY (ID) REFERENCES B (ID);
&lt;br/&gt;&lt;br/&gt;or the almost same with composed keys (string, string).
&lt;br/&gt;&lt;br/&gt;Basically all was green with openjpa 2.2.0 but since openjpa 2.3.0-SNAPSHOT
&lt;br/&gt;we get exceptions because of these constraints. Moreover the ddl doesn't
&lt;br/&gt;generate them.
&lt;br/&gt;&lt;br/&gt;Here the exception:
&lt;br/&gt;&lt;br/&gt;Caused by: org.apache.openjpa.lib.jdbc.ReportingSQLException: DELETE on
&lt;br/&gt;table 'X' caused a violation of foreign key constraint 'C' for key
&lt;br/&gt;(aaa,bbb). &amp;nbsp;The statement has been rolled back. {prepstmnt 450145810 DELETE
&lt;br/&gt;FROM X WHERE KEY1 = ? AND KEY2 = ?} [code=-1, state=23503]
&lt;br/&gt;at
&lt;br/&gt;org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator.wrap(LoggingConnectionDecorator.java:219)
&lt;br/&gt;at
&lt;br/&gt;org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator.wrap(LoggingConnectionDecorator.java:195)
&lt;br/&gt;&amp;nbsp;at
&lt;br/&gt;org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator.access$1000(LoggingConnectionDecorator.java:59)
&lt;br/&gt;at
&lt;br/&gt;org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator$LoggingConnection$LoggingPreparedStatement.executeUpdate(LoggingConnectionDecorator.java:1134)
&lt;br/&gt;&amp;nbsp;at
&lt;br/&gt;org.apache.openjpa.lib.jdbc.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:275)
&lt;br/&gt;at
&lt;br/&gt;org.apache.openjpa.jdbc.kernel.JDBCStoreManager$CancelPreparedStatement.executeUpdate(JDBCStoreManager.java:1792)
&lt;br/&gt;&amp;nbsp;at
&lt;br/&gt;org.apache.openjpa.jdbc.kernel.PreparedStatementManagerImpl.executeUpdate(PreparedStatementManagerImpl.java:268)
&lt;br/&gt;at
&lt;br/&gt;org.apache.openjpa.jdbc.kernel.PreparedStatementManagerImpl.flushAndUpdate(PreparedStatementManagerImpl.java:119)
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;Anything known changed? Is it a regression?
&lt;br/&gt;&lt;br/&gt;*Romain Manni-Bucau*
&lt;br/&gt;*Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;*Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;&lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;*LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;*Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/differents-constraints-tp7584006.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7584005</id>
		<title>[jira] [Updated] (OPENJPA-2385) PrePersist/PreUpdate not invoked</title>
		<published>2013-05-23T02:51:19Z</published>
		<updated>2013-05-23T02:51:19Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[ &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2385?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2385?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&lt;/a&gt;&amp;nbsp;]
&lt;br/&gt;&lt;br/&gt;Guillaume Chauvet updated OPENJPA-2385:
&lt;br/&gt;---------------------------------------
&lt;br/&gt;&lt;br/&gt;&amp;nbsp; &amp;nbsp; Attachment: OPENJPA-2385.zip
&lt;br/&gt;&lt;br/&gt;Attached, please find a unitary test that reproduce the issue.
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; PrePersist/PreUpdate not invoked
&lt;br/&gt;&amp;gt; --------------------------------
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: OPENJPA-2385
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2385&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2385&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: OpenJPA
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: 2.2.0, 2.2.1, 2.2.2, 2.2.3
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Guillaume Chauvet
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: OPENJPA-2385.zip
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; In the OpenJPA user manual, section 3.1 &amp;quot; Callback Methods&amp;quot; we read this :
&lt;br/&gt;&amp;gt; PrePersist: Methods marked with this annotation will be invoked before an object is persisted. This could be used for assigning primary key values to persistent objects. This is equivalent to the XML element tag pre-persist.
&lt;br/&gt;&amp;gt; But this is not the behavior obtained.
&lt;/div&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Updated-OPENJPA-2385-PrePersist-PreUpdate-not-invoked-tp7584005.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7584004</id>
		<title>[jira] [Created] (OPENJPA-2385) PrePersist/PreUpdate not invoked</title>
		<published>2013-05-23T02:31:20Z</published>
		<updated>2013-05-23T02:31:20Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			Guillaume Chauvet created OPENJPA-2385:
&lt;br/&gt;------------------------------------------
&lt;br/&gt;&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Summary: PrePersist/PreUpdate not invoked
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: OPENJPA-2385
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2385&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2385&lt;/a&gt;&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: OpenJPA
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br/&gt;&amp;nbsp; &amp;nbsp; Affects Versions: 2.2.2, 2.2.1, 2.2.0, 2.2.3
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Guillaume Chauvet
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;In the OpenJPA user manual, section 3.1 &amp;quot; Callback Methods&amp;quot; we read this :
&lt;br/&gt;PrePersist: Methods marked with this annotation will be invoked before an object is persisted. This could be used for assigning primary key values to persistent objects. This is equivalent to the XML element tag pre-persist.
&lt;br/&gt;&lt;br/&gt;But this is not the behavior obtained.
&lt;br/&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Created-OPENJPA-2385-PrePersist-PreUpdate-not-invoked-tp7584004.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7584001</id>
		<title>[jira] [Resolved] (OPENJPA-2384) Rendering criteria query to JPQL-like string ignores multiple GROUP BY clauses</title>
		<published>2013-05-22T10:43:20Z</published>
		<updated>2013-05-22T10:43:20Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[ &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2384?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2384?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&lt;/a&gt;&amp;nbsp;]
&lt;br/&gt;&lt;br/&gt;Pinaki Poddar resolved OPENJPA-2384.
&lt;br/&gt;------------------------------------
&lt;br/&gt;&lt;br/&gt;&amp;nbsp; &amp;nbsp; Resolution: Fixed
&lt;br/&gt;&lt;br/&gt;see revision r1456576 (that was not referred to an issue).
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; Rendering criteria query to JPQL-like string ignores multiple GROUP BY clauses
&lt;br/&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: OPENJPA-2384
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2384&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2384&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: OpenJPA
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Priority: Minor
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: 2.3.0
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;/div&gt;&lt;br/&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Resolved-OPENJPA-2384-Rendering-criteria-query-to-JPQL-like-string-ignores-multiple-GROUP-BY-cls-tp7584001.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583999</id>
		<title>[jira] [Commented] (OPENJPA-2384) Rendering criteria query to JPQL-like string ignores multiple GROUP BY clauses</title>
		<published>2013-05-22T10:41:28Z</published>
		<updated>2013-05-22T10:41:28Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			&lt;br/&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2384?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=13664313#comment-13664313&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2384?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;amp;focusedCommentId=13664313#comment-13664313&lt;/a&gt;&amp;nbsp;] 
&lt;br/&gt;&lt;br/&gt;Pinaki Poddar commented on OPENJPA-2384:
&lt;br/&gt;----------------------------------------
&lt;br/&gt;&lt;br/&gt;this issue was fixed with following revision without a JIRA.
&lt;br/&gt;&lt;br/&gt;r1456576 | ppoddar | 2013-03-14 10:59:17 -0700 (Thu, 14 Mar 2013) | 1 line
&lt;br/&gt;&lt;br/&gt;Simple change to stringify a collection of values with proper spaces
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; Rendering criteria query to JPQL-like string ignores multiple GROUP BY clauses
&lt;br/&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: OPENJPA-2384
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2384&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2384&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: OpenJPA
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Priority: Minor
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: 2.3.0
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;/div&gt;&lt;br/&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Commented-OPENJPA-2384-Rendering-criteria-query-to-JPQL-like-string-ignores-multiple-GROUP-BY-cs-tp7583999.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583998</id>
		<title>[jira] [Created] (OPENJPA-2384) Rendering criteria query to JPQL-like string ignores multiple GROUP BY clauses</title>
		<published>2013-05-22T10:41:20Z</published>
		<updated>2013-05-22T10:41:20Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			Pinaki Poddar created OPENJPA-2384:
&lt;br/&gt;--------------------------------------
&lt;br/&gt;&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Summary: Rendering criteria query to JPQL-like string ignores multiple GROUP BY clauses
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: OPENJPA-2384
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2384&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2384&lt;/a&gt;&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: OpenJPA
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Pinaki Poddar
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Pinaki Poddar
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Priority: Minor
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Fix For: 2.3.0
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Created-OPENJPA-2384-Rendering-criteria-query-to-JPQL-like-string-ignores-multiple-GROUP-BY-clas-tp7583998.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583997</id>
		<title>Re: release 2.3.x</title>
		<published>2013-05-22T09:06:35Z</published>
		<updated>2013-05-22T09:06:35Z</updated>
		<author>
			<name>Romain Manni-Bucau</name>
		</author>
		<content type="html">
			no since it was fixed on trunk
&lt;br/&gt;&lt;br/&gt;*Romain Manni-Bucau*
&lt;br/&gt;*Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;*Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;&lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;*LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;*Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;2013/5/22 Pinaki Poddar &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583997&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;
&lt;br/&gt;&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; &amp;gt; the criteria api bug where only a single groupby or having was used (&amp;quot;, &amp;quot;
&lt;br/&gt;&amp;gt; was missing when the jpql was created)
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; did you file a JIRA?
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; -----
&lt;br/&gt;&amp;gt; Pinaki Poddar
&lt;br/&gt;&amp;gt; Chair, Apache OpenJPA Project
&lt;br/&gt;&amp;gt; --
&lt;br/&gt;&amp;gt; View this message in context:
&lt;br/&gt;&amp;gt; &lt;a href=&quot;http://openjpa.208410.n2.nabble.com/release-2-3-x-tp7583967p7583996.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://openjpa.208410.n2.nabble.com/release-2-3-x-tp7583967p7583996.html&lt;/a&gt;&lt;br/&gt;&amp;gt; Sent from the OpenJPA Developers mailing list archive at Nabble.com.
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&lt;/div&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/release-2-3-x-tp7583967p7583997.html" />
		<thr:in-reply-to ref="tag:openjpa.208410.n2.nabble.com,2006:post-7583996"/>
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583996</id>
		<title>Re: release 2.3.x</title>
		<published>2013-05-22T09:04:07Z</published>
		<updated>2013-05-22T09:04:07Z</updated>
		<author>
			<name>Pinaki Poddar</name>
		</author>
		<content type="html">
			&amp;gt; the criteria api bug where only a single groupby or having was used (&amp;quot;, &amp;quot; was missing when the jpql was created) 
&lt;br/&gt;&lt;br/&gt;did you file a JIRA? 

	
	
	&lt;div class=&quot;signature weak-color&quot;&gt;
				Pinaki Poddar
&lt;br/&gt;Chair, Apache OpenJPA Project
			&lt;/div&gt;
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/release-2-3-x-tp7583967p7583996.html" />
		<thr:in-reply-to ref="tag:openjpa.208410.n2.nabble.com,2006:post-7583971"/>
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583987</id>
		<title>[jira] [Commented] (OPENJPA-2373) MapsId in a Child entity to a Parent entity using auto-assigned identity fails with duplicte INSERT SQL</title>
		<published>2013-05-21T16:44:20Z</published>
		<updated>2013-05-21T16:44:20Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			&lt;br/&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2373?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=13663601#comment-13663601&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2373?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;amp;focusedCommentId=13663601#comment-13663601&lt;/a&gt;&amp;nbsp;] 
&lt;br/&gt;&lt;br/&gt;ASF subversion and git services commented on OPENJPA-2373:
&lt;br/&gt;----------------------------------------------------------
&lt;br/&gt;&lt;br/&gt;Commit 1485013 from hthomann
&lt;br/&gt;[ &lt;a href=&quot;https://svn.apache.org/r1485013&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://svn.apache.org/r1485013&lt;/a&gt;&amp;nbsp;]
&lt;br/&gt;&lt;br/&gt;OPENJPA-2373: Made a test case update given identity auto generated ids do not work so well for some databases.
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; MapsId in a Child entity to a Parent entity using auto-assigned identity fails with duplicte INSERT SQL 
&lt;br/&gt;&amp;gt; --------------------------------------------------------------------------------------------------------
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: OPENJPA-2373
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2373&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2373&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: OpenJPA
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: 2.0.0, 2.0.1, 2.1.1, 2.2.1
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: 2.3.0
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: graycol.gif
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; A MapsId annotation in entity C (child) annotates a field p of type P (parent). P uses auto-generated identity. 
&lt;br/&gt;&amp;gt; P-C is a bidirectional parent-child relationship.
&lt;br/&gt;&amp;gt; &amp;nbsp;
&lt;br/&gt;&amp;gt; During flush sequence, A row is created for P and flushed for the database to assign an identity. When C is flushed, it wrongly creates a row for P again while handling the field p that points to parent.
&lt;br/&gt;&amp;gt; Of course, the commit breaks with a DuplicateKeyException on P's table. 
&lt;/div&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Commented-OPENJPA-2373-MapsId-in-a-Child-entity-to-a-Parent-entity-using-auto-assigned-identityL-tp7583987.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583985</id>
		<title>[jira] [Commented] (OPENJPA-2373) MapsId in a Child entity to a Parent entity using auto-assigned identity fails with duplicte INSERT SQL</title>
		<published>2013-05-21T16:40:21Z</published>
		<updated>2013-05-21T16:40:21Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			&lt;br/&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2373?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=13663596#comment-13663596&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2373?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;amp;focusedCommentId=13663596#comment-13663596&lt;/a&gt;&amp;nbsp;] 
&lt;br/&gt;&lt;br/&gt;ASF subversion and git services commented on OPENJPA-2373:
&lt;br/&gt;----------------------------------------------------------
&lt;br/&gt;&lt;br/&gt;Commit 1485012 from hthomann
&lt;br/&gt;[ &lt;a href=&quot;https://svn.apache.org/r1485012&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://svn.apache.org/r1485012&lt;/a&gt;&amp;nbsp;]
&lt;br/&gt;&lt;br/&gt;OPENJPA-2373: Made a test case update given identity auto generated ids do not work so well for some databases.
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; MapsId in a Child entity to a Parent entity using auto-assigned identity fails with duplicte INSERT SQL 
&lt;br/&gt;&amp;gt; --------------------------------------------------------------------------------------------------------
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: OPENJPA-2373
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2373&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2373&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: OpenJPA
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: 2.0.0, 2.0.1, 2.1.1, 2.2.1
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: 2.3.0
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: graycol.gif
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; A MapsId annotation in entity C (child) annotates a field p of type P (parent). P uses auto-generated identity. 
&lt;br/&gt;&amp;gt; P-C is a bidirectional parent-child relationship.
&lt;br/&gt;&amp;gt; &amp;nbsp;
&lt;br/&gt;&amp;gt; During flush sequence, A row is created for P and flushed for the database to assign an identity. When C is flushed, it wrongly creates a row for P again while handling the field p that points to parent.
&lt;br/&gt;&amp;gt; Of course, the commit breaks with a DuplicateKeyException on P's table. 
&lt;/div&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Commented-OPENJPA-2373-MapsId-in-a-Child-entity-to-a-Parent-entity-using-auto-assigned-identityL-tp7583985.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583983</id>
		<title>[jira] [Commented] (OPENJPA-2373) MapsId in a Child entity to a Parent entity using auto-assigned identity fails with duplicte INSERT SQL</title>
		<published>2013-05-21T16:28:20Z</published>
		<updated>2013-05-21T16:28:20Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			&lt;br/&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2373?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=13663580#comment-13663580&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2373?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;amp;focusedCommentId=13663580#comment-13663580&lt;/a&gt;&amp;nbsp;] 
&lt;br/&gt;&lt;br/&gt;ASF subversion and git services commented on OPENJPA-2373:
&lt;br/&gt;----------------------------------------------------------
&lt;br/&gt;&lt;br/&gt;Commit 1485011 from hthomann
&lt;br/&gt;[ &lt;a href=&quot;https://svn.apache.org/r1485011&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://svn.apache.org/r1485011&lt;/a&gt;&amp;nbsp;]
&lt;br/&gt;&lt;br/&gt;OPENJPA-2373: Made a test case update given identity auto generated ids do not work so well for some databases.
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; MapsId in a Child entity to a Parent entity using auto-assigned identity fails with duplicte INSERT SQL 
&lt;br/&gt;&amp;gt; --------------------------------------------------------------------------------------------------------
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: OPENJPA-2373
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2373&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2373&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: OpenJPA
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: 2.0.0, 2.0.1, 2.1.1, 2.2.1
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: 2.3.0
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: graycol.gif
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; A MapsId annotation in entity C (child) annotates a field p of type P (parent). P uses auto-generated identity. 
&lt;br/&gt;&amp;gt; P-C is a bidirectional parent-child relationship.
&lt;br/&gt;&amp;gt; &amp;nbsp;
&lt;br/&gt;&amp;gt; During flush sequence, A row is created for P and flushed for the database to assign an identity. When C is flushed, it wrongly creates a row for P again while handling the field p that points to parent.
&lt;br/&gt;&amp;gt; Of course, the commit breaks with a DuplicateKeyException on P's table. 
&lt;/div&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Commented-OPENJPA-2373-MapsId-in-a-Child-entity-to-a-Parent-entity-using-auto-assigned-identityL-tp7583983.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583981</id>
		<title>[jira] [Commented] (OPENJPA-2373) MapsId in a Child entity to a Parent entity using auto-assigned identity fails with duplicte INSERT SQL</title>
		<published>2013-05-21T16:24:21Z</published>
		<updated>2013-05-21T16:24:21Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			&lt;br/&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2373?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=13663572#comment-13663572&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2373?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;amp;focusedCommentId=13663572#comment-13663572&lt;/a&gt;&amp;nbsp;] 
&lt;br/&gt;&lt;br/&gt;ASF subversion and git services commented on OPENJPA-2373:
&lt;br/&gt;----------------------------------------------------------
&lt;br/&gt;&lt;br/&gt;Commit 1485010 from hthomann
&lt;br/&gt;[ &lt;a href=&quot;https://svn.apache.org/r1485010&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://svn.apache.org/r1485010&lt;/a&gt;&amp;nbsp;]
&lt;br/&gt;&lt;br/&gt;OPENJPA-2373: Made a test case update given identity auto generated ids do not work so well for some databases.
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; MapsId in a Child entity to a Parent entity using auto-assigned identity fails with duplicte INSERT SQL 
&lt;br/&gt;&amp;gt; --------------------------------------------------------------------------------------------------------
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: OPENJPA-2373
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2373&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2373&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: OpenJPA
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: 2.0.0, 2.0.1, 2.1.1, 2.2.1
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: 2.3.0
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: graycol.gif
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; A MapsId annotation in entity C (child) annotates a field p of type P (parent). P uses auto-generated identity. 
&lt;br/&gt;&amp;gt; P-C is a bidirectional parent-child relationship.
&lt;br/&gt;&amp;gt; &amp;nbsp;
&lt;br/&gt;&amp;gt; During flush sequence, A row is created for P and flushed for the database to assign an identity. When C is flushed, it wrongly creates a row for P again while handling the field p that points to parent.
&lt;br/&gt;&amp;gt; Of course, the commit breaks with a DuplicateKeyException on P's table. 
&lt;/div&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Commented-OPENJPA-2373-MapsId-in-a-Child-entity-to-a-Parent-entity-using-auto-assigned-identityL-tp7583981.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583977</id>
		<title>Re: release 2.3.x</title>
		<published>2013-05-21T06:23:36Z</published>
		<updated>2013-05-21T06:23:36Z</updated>
		<author>
			<name>Romain Manni-Bucau</name>
		</author>
		<content type="html">
			that's this commit
&lt;br/&gt;&lt;a href=&quot;https://mail-archives.apache.org/mod_mbox/openjpa-commits/201303.mbox/%3C20130314175917.E7B1823888E7@eris.apache.org%3E&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://mail-archives.apache.org/mod_mbox/openjpa-commits/201303.mbox/%3C20130314175917.E7B1823888E7@...%3E&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;no idea if a jira is linked or not :(
&lt;br/&gt;&lt;br/&gt;*Romain Manni-Bucau*
&lt;br/&gt;*Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;*Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;&lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;*LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;*Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;2013/5/21 Kevin Sutter &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583977&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;
&lt;br/&gt;&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; HI Romain,
&lt;br/&gt;&amp;gt; Sorry, I'm a little slow this morning... &amp;nbsp;:-)
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;quot;Should be the same...&amp;quot; &amp;nbsp;Same as what? &amp;nbsp;The JIRA I found related to the
&lt;br/&gt;&amp;gt; Criteria API and GroupBy processing was still open with no commits to trunk
&lt;br/&gt;&amp;gt; or any other release. &amp;nbsp;So, that JIRA didn't fix your issue... &amp;nbsp;Do you know
&lt;br/&gt;&amp;gt; if there was a specific JIRA for this issue? &amp;nbsp;Or, was it a case that you
&lt;br/&gt;&amp;gt; just ran into this issue, tried it on trunk, and the problem no longer
&lt;br/&gt;&amp;gt; existed? &amp;nbsp;If that's the case, then I'll probably need more detail from you
&lt;br/&gt;&amp;gt; on the specific scenario you were running so that we might narrow down
&lt;br/&gt;&amp;gt; which JIRA helped you for this particular case.
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; Thanks again,
&lt;br/&gt;&amp;gt; Kevin
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; On Mon, May 20, 2013 at 2:25 PM, Romain Manni-Bucau
&lt;br/&gt;&amp;gt; &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583977&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;wrote:
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; Should be the same, i got the issue on an app and checked out trunk and
&lt;br/&gt;&amp;gt; saw
&lt;br/&gt;&amp;gt; &amp;gt; it was fixed.
&lt;br/&gt;&amp;gt; &amp;gt; Le 20 mai 2013 21:24, &amp;quot;Kevin Sutter&amp;quot; &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583977&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt; a écrit :
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; Romain,
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; I guess I wasn't clairvoyant... &amp;nbsp;:-) &amp;nbsp;The ASM one was easy to find.
&lt;br/&gt;&amp;gt; &amp;nbsp;But,
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; the one I was thinking of for the Criteria bug is still open, so I
&lt;br/&gt;&amp;gt; doubt
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; that's the one you were referring to. &amp;nbsp;Can you look up the JIRA you
&lt;br/&gt;&amp;gt; were
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; referring to? &amp;nbsp;Thanks!
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; Kevin
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; On Mon, May 20, 2013 at 12:54 PM, Kevin Sutter &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583977&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; wrote:
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; Thanks, Romain. &amp;nbsp;I am familiar with the items you referenced.
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; On Mon, May 20, 2013 at 12:44 PM, Romain Manni-Bucau &amp;lt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583977&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt; wrote:
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; basically 2 features (if you need jira number just ask i'll try to
&lt;br/&gt;&amp;gt; &amp;gt; find
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; them back):
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; - ASM &amp;quot;facade&amp;quot; to be able to use xbean asm shade instead of asm.jar
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; (blocking for tomee if not in the box)
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; - the criteria api bug where only a single groupby or having was
&lt;br/&gt;&amp;gt; used
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; (&amp;quot;,
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;quot;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; was missing when the jpql was created)
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; *Romain Manni-Bucau*
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; *Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; *Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; *LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; *Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; 2013/5/20 Kevin Sutter &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583977&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; Hi Romain,
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; We currently don't have any plans for cutting a 2.3.0 release...
&lt;br/&gt;&amp;gt; &amp;nbsp;A
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; few
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; of
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; us actually discussed it a couple of weeks back, but we didn't
&lt;br/&gt;&amp;gt; come
&lt;br/&gt;&amp;gt; &amp;gt; up
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; with
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; enough &amp;quot;features&amp;quot; to warrant a 2.3.0 release. &amp;nbsp;Do you have a list
&lt;br/&gt;&amp;gt; of
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; the
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; JIRAs that you have an interest in?
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; If there are other users of trunk that would like to see a 2.3.0
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; release,
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; please voice your interest.
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; Thanks,
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; Kevin
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; On Mon, May 20, 2013 at 9:50 AM, Romain Manni-Bucau
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583977&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;wrote:
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; Hi guys,
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; any plan to release 2.3.0?
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; basically i'd like to get rid of openejb shade for next tomee
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; release
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; (and
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; some other fixes in 2.3.x would be great to integrate).
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; I updated tomee snapshot to use the openjpa snapshot to see if
&lt;br/&gt;&amp;gt; we
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; have
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; any
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; side effect but having some inputs to know if a release could be
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; done
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; soon
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; would be great.
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; *Romain Manni-Bucau*
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; *Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; *Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; *LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; *Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&lt;/div&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/release-2-3-x-tp7583967p7583977.html" />
		<thr:in-reply-to ref="tag:openjpa.208410.n2.nabble.com,2006:post-7583976"/>
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583976</id>
		<title>Re: release 2.3.x</title>
		<published>2013-05-21T06:15:59Z</published>
		<updated>2013-05-21T06:15:59Z</updated>
		<author>
			<name>Kevin Sutter</name>
		</author>
		<content type="html">
			HI Romain,
&lt;br/&gt;Sorry, I'm a little slow this morning... &amp;nbsp;:-)
&lt;br/&gt;&lt;br/&gt;&amp;quot;Should be the same...&amp;quot; &amp;nbsp;Same as what? &amp;nbsp;The JIRA I found related to the
&lt;br/&gt;Criteria API and GroupBy processing was still open with no commits to trunk
&lt;br/&gt;or any other release. &amp;nbsp;So, that JIRA didn't fix your issue... &amp;nbsp;Do you know
&lt;br/&gt;if there was a specific JIRA for this issue? &amp;nbsp;Or, was it a case that you
&lt;br/&gt;just ran into this issue, tried it on trunk, and the problem no longer
&lt;br/&gt;existed? &amp;nbsp;If that's the case, then I'll probably need more detail from you
&lt;br/&gt;on the specific scenario you were running so that we might narrow down
&lt;br/&gt;which JIRA helped you for this particular case.
&lt;br/&gt;&lt;br/&gt;Thanks again,
&lt;br/&gt;Kevin
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;On Mon, May 20, 2013 at 2:25 PM, Romain Manni-Bucau
&lt;br/&gt;&amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583976&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;wrote:
&lt;br/&gt;&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; Should be the same, i got the issue on an app and checked out trunk and saw
&lt;br/&gt;&amp;gt; it was fixed.
&lt;br/&gt;&amp;gt; Le 20 mai 2013 21:24, &amp;quot;Kevin Sutter&amp;quot; &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583976&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt; a écrit :
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; Romain,
&lt;br/&gt;&amp;gt; &amp;gt; I guess I wasn't clairvoyant... &amp;nbsp;:-) &amp;nbsp;The ASM one was easy to find. &amp;nbsp;But,
&lt;br/&gt;&amp;gt; &amp;gt; the one I was thinking of for the Criteria bug is still open, so I doubt
&lt;br/&gt;&amp;gt; &amp;gt; that's the one you were referring to. &amp;nbsp;Can you look up the JIRA you were
&lt;br/&gt;&amp;gt; &amp;gt; referring to? &amp;nbsp;Thanks!
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; Kevin
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; On Mon, May 20, 2013 at 12:54 PM, Kevin Sutter &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583976&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; wrote:
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; Thanks, Romain. &amp;nbsp;I am familiar with the items you referenced.
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; On Mon, May 20, 2013 at 12:44 PM, Romain Manni-Bucau &amp;lt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583976&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt; wrote:
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; basically 2 features (if you need jira number just ask i'll try to
&lt;br/&gt;&amp;gt; find
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; them back):
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; - ASM &amp;quot;facade&amp;quot; to be able to use xbean asm shade instead of asm.jar
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; (blocking for tomee if not in the box)
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; - the criteria api bug where only a single groupby or having was used
&lt;br/&gt;&amp;gt; &amp;gt; (&amp;quot;,
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;quot;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; was missing when the jpql was created)
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; *Romain Manni-Bucau*
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; *Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; *Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; *LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; *Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; 2013/5/20 Kevin Sutter &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583976&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; Hi Romain,
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; We currently don't have any plans for cutting a 2.3.0 release... &amp;nbsp;A
&lt;br/&gt;&amp;gt; &amp;gt; few
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; of
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; us actually discussed it a couple of weeks back, but we didn't come
&lt;br/&gt;&amp;gt; up
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; with
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; enough &amp;quot;features&amp;quot; to warrant a 2.3.0 release. &amp;nbsp;Do you have a list of
&lt;br/&gt;&amp;gt; &amp;gt; the
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; JIRAs that you have an interest in?
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; If there are other users of trunk that would like to see a 2.3.0
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; release,
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; please voice your interest.
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; Thanks,
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; Kevin
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; On Mon, May 20, 2013 at 9:50 AM, Romain Manni-Bucau
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583976&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;wrote:
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; Hi guys,
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; any plan to release 2.3.0?
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; basically i'd like to get rid of openejb shade for next tomee
&lt;br/&gt;&amp;gt; &amp;gt; release
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; (and
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; some other fixes in 2.3.x would be great to integrate).
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; I updated tomee snapshot to use the openjpa snapshot to see if we
&lt;br/&gt;&amp;gt; &amp;gt; have
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; any
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; side effect but having some inputs to know if a release could be
&lt;br/&gt;&amp;gt; &amp;gt; done
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; soon
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; would be great.
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; *Romain Manni-Bucau*
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; *Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; *Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; *LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; *Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&lt;/div&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/release-2-3-x-tp7583967p7583976.html" />
		<thr:in-reply-to ref="tag:openjpa.208410.n2.nabble.com,2006:post-7583975"/>
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583975</id>
		<title>Re: release 2.3.x</title>
		<published>2013-05-20T12:25:40Z</published>
		<updated>2013-05-20T12:25:40Z</updated>
		<author>
			<name>Romain Manni-Bucau</name>
		</author>
		<content type="html">
			Should be the same, i got the issue on an app and checked out trunk and saw
&lt;br/&gt;it was fixed.
&lt;br/&gt;Le 20 mai 2013 21:24, &amp;quot;Kevin Sutter&amp;quot; &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583975&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt; a écrit :
&lt;br/&gt;&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; Romain,
&lt;br/&gt;&amp;gt; I guess I wasn't clairvoyant... &amp;nbsp;:-) &amp;nbsp;The ASM one was easy to find. &amp;nbsp;But,
&lt;br/&gt;&amp;gt; the one I was thinking of for the Criteria bug is still open, so I doubt
&lt;br/&gt;&amp;gt; that's the one you were referring to. &amp;nbsp;Can you look up the JIRA you were
&lt;br/&gt;&amp;gt; referring to? &amp;nbsp;Thanks!
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; Kevin
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; On Mon, May 20, 2013 at 12:54 PM, Kevin Sutter &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583975&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt; wrote:
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; Thanks, Romain. &amp;nbsp;I am familiar with the items you referenced.
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; On Mon, May 20, 2013 at 12:44 PM, Romain Manni-Bucau &amp;lt;
&lt;br/&gt;&amp;gt; &amp;gt; &lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583975&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt; wrote:
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; basically 2 features (if you need jira number just ask i'll try to find
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; them back):
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; - ASM &amp;quot;facade&amp;quot; to be able to use xbean asm shade instead of asm.jar
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; (blocking for tomee if not in the box)
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; - the criteria api bug where only a single groupby or having was used
&lt;br/&gt;&amp;gt; (&amp;quot;,
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;quot;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; was missing when the jpql was created)
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; *Romain Manni-Bucau*
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; *Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; *Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; *LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; *Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; 2013/5/20 Kevin Sutter &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583975&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Hi Romain,
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; We currently don't have any plans for cutting a 2.3.0 release... &amp;nbsp;A
&lt;br/&gt;&amp;gt; few
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; of
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; us actually discussed it a couple of weeks back, but we didn't come up
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; with
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; enough &amp;quot;features&amp;quot; to warrant a 2.3.0 release. &amp;nbsp;Do you have a list of
&lt;br/&gt;&amp;gt; the
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; JIRAs that you have an interest in?
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; If there are other users of trunk that would like to see a 2.3.0
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; release,
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; please voice your interest.
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Thanks,
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Kevin
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; On Mon, May 20, 2013 at 9:50 AM, Romain Manni-Bucau
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583975&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;wrote:
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; Hi guys,
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; any plan to release 2.3.0?
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; basically i'd like to get rid of openejb shade for next tomee
&lt;br/&gt;&amp;gt; release
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; (and
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; some other fixes in 2.3.x would be great to integrate).
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; I updated tomee snapshot to use the openjpa snapshot to see if we
&lt;br/&gt;&amp;gt; have
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; any
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; side effect but having some inputs to know if a release could be
&lt;br/&gt;&amp;gt; done
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; soon
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; would be great.
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; *Romain Manni-Bucau*
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; *Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; *Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; *LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; *Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&lt;/div&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/release-2-3-x-tp7583967p7583975.html" />
		<thr:in-reply-to ref="tag:openjpa.208410.n2.nabble.com,2006:post-7583974"/>
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583974</id>
		<title>Re: release 2.3.x</title>
		<published>2013-05-20T12:23:40Z</published>
		<updated>2013-05-20T12:23:40Z</updated>
		<author>
			<name>Kevin Sutter</name>
		</author>
		<content type="html">
			Romain,
&lt;br/&gt;I guess I wasn't clairvoyant... &amp;nbsp;:-) &amp;nbsp;The ASM one was easy to find. &amp;nbsp;But,
&lt;br/&gt;the one I was thinking of for the Criteria bug is still open, so I doubt
&lt;br/&gt;that's the one you were referring to. &amp;nbsp;Can you look up the JIRA you were
&lt;br/&gt;referring to? &amp;nbsp;Thanks!
&lt;br/&gt;&lt;br/&gt;Kevin
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;On Mon, May 20, 2013 at 12:54 PM, Kevin Sutter &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583974&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt; wrote:
&lt;br/&gt;&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; Thanks, Romain. &amp;nbsp;I am familiar with the items you referenced.
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; On Mon, May 20, 2013 at 12:44 PM, Romain Manni-Bucau &amp;lt;
&lt;br/&gt;&amp;gt; &lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583974&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt; wrote:
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt; basically 2 features (if you need jira number just ask i'll try to find
&lt;br/&gt;&amp;gt;&amp;gt; them back):
&lt;br/&gt;&amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt; - ASM &amp;quot;facade&amp;quot; to be able to use xbean asm shade instead of asm.jar
&lt;br/&gt;&amp;gt;&amp;gt; (blocking for tomee if not in the box)
&lt;br/&gt;&amp;gt;&amp;gt; - the criteria api bug where only a single groupby or having was used (&amp;quot;,
&lt;br/&gt;&amp;gt;&amp;gt; &amp;quot;
&lt;br/&gt;&amp;gt;&amp;gt; was missing when the jpql was created)
&lt;br/&gt;&amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt; *Romain Manni-Bucau*
&lt;br/&gt;&amp;gt;&amp;gt; *Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;&amp;gt;&amp;gt; *Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;
&lt;br/&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt; *LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt;&amp;gt; *Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt; 2013/5/20 Kevin Sutter &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583974&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; Hi Romain,
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; We currently don't have any plans for cutting a 2.3.0 release... &amp;nbsp;A few
&lt;br/&gt;&amp;gt;&amp;gt; of
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; us actually discussed it a couple of weeks back, but we didn't come up
&lt;br/&gt;&amp;gt;&amp;gt; with
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; enough &amp;quot;features&amp;quot; to warrant a 2.3.0 release. &amp;nbsp;Do you have a list of the
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; JIRAs that you have an interest in?
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; If there are other users of trunk that would like to see a 2.3.0
&lt;br/&gt;&amp;gt;&amp;gt; release,
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; please voice your interest.
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; Thanks,
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; Kevin
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; On Mon, May 20, 2013 at 9:50 AM, Romain Manni-Bucau
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583974&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;wrote:
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; Hi guys,
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; any plan to release 2.3.0?
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; basically i'd like to get rid of openejb shade for next tomee release
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; (and
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; some other fixes in 2.3.x would be great to integrate).
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; I updated tomee snapshot to use the openjpa snapshot to see if we have
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; any
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; side effect but having some inputs to know if a release could be done
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; soon
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; would be great.
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; *Romain Manni-Bucau*
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; *Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; *Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; &lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; *LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; *Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&lt;/div&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/release-2-3-x-tp7583967p7583974.html" />
		<thr:in-reply-to ref="tag:openjpa.208410.n2.nabble.com,2006:post-7583972"/>
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583973</id>
		<title>[jira] [Updated] (OPENJPA-2171) asm should be optional</title>
		<published>2013-05-20T12:17:15Z</published>
		<updated>2013-05-20T12:17:15Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[ &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2171?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2171?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&lt;/a&gt;&amp;nbsp;]
&lt;br/&gt;&lt;br/&gt;Kevin Sutter updated OPENJPA-2171:
&lt;br/&gt;----------------------------------
&lt;br/&gt;&lt;br/&gt;&amp;nbsp; &amp;nbsp; Labels: 2.3.0-candidate &amp;nbsp;(was: )
&lt;br/&gt;&amp;nbsp; &amp;nbsp; 
&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; asm should be optional
&lt;br/&gt;&amp;gt; ----------------------
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: OPENJPA-2171
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2171&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2171&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: OpenJPA
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Improvement
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Romain Manni-Bucau
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Mark Struberg
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Labels: 2.3.0-candidate
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: 2.3.0
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: ASM.patch
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; openjpa uses since some versions asm but in tomee for instance we use a shade (through the xbean one org.apache.xbean:xbean-asm-shaded to avoid classloading/version issues with webapps/applications.
&lt;br/&gt;&amp;gt; it can be nice if openjpa can provide us an issue to this because we really don't want to provide asm in our binaries.
&lt;br/&gt;&amp;gt; solutions can be to use the xbean shade, give us an interface to implement or to try several implementation (xbean shade, asm,...) by reflection
&lt;/div&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Updated-OPENJPA-2171-asm-should-be-optional-tp7583973.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583972</id>
		<title>Re: release 2.3.x</title>
		<published>2013-05-20T10:54:47Z</published>
		<updated>2013-05-20T10:54:47Z</updated>
		<author>
			<name>Kevin Sutter</name>
		</author>
		<content type="html">
			Thanks, Romain. &amp;nbsp;I am familiar with the items you referenced.
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;On Mon, May 20, 2013 at 12:44 PM, Romain Manni-Bucau
&lt;br/&gt;&amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583972&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;wrote:
&lt;br/&gt;&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; basically 2 features (if you need jira number just ask i'll try to find
&lt;br/&gt;&amp;gt; them back):
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; - ASM &amp;quot;facade&amp;quot; to be able to use xbean asm shade instead of asm.jar
&lt;br/&gt;&amp;gt; (blocking for tomee if not in the box)
&lt;br/&gt;&amp;gt; - the criteria api bug where only a single groupby or having was used (&amp;quot;, &amp;quot;
&lt;br/&gt;&amp;gt; was missing when the jpql was created)
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; *Romain Manni-Bucau*
&lt;br/&gt;&amp;gt; *Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;&amp;gt; *Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;
&lt;br/&gt;&amp;gt; &lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; *LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; *Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; 2013/5/20 Kevin Sutter &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583972&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; Hi Romain,
&lt;br/&gt;&amp;gt; &amp;gt; We currently don't have any plans for cutting a 2.3.0 release... &amp;nbsp;A few
&lt;br/&gt;&amp;gt; of
&lt;br/&gt;&amp;gt; &amp;gt; us actually discussed it a couple of weeks back, but we didn't come up
&lt;br/&gt;&amp;gt; with
&lt;br/&gt;&amp;gt; &amp;gt; enough &amp;quot;features&amp;quot; to warrant a 2.3.0 release. &amp;nbsp;Do you have a list of the
&lt;br/&gt;&amp;gt; &amp;gt; JIRAs that you have an interest in?
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; If there are other users of trunk that would like to see a 2.3.0 release,
&lt;br/&gt;&amp;gt; &amp;gt; please voice your interest.
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; Thanks,
&lt;br/&gt;&amp;gt; &amp;gt; Kevin
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; On Mon, May 20, 2013 at 9:50 AM, Romain Manni-Bucau
&lt;br/&gt;&amp;gt; &amp;gt; &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583972&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;wrote:
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; Hi guys,
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; any plan to release 2.3.0?
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; basically i'd like to get rid of openejb shade for next tomee release
&lt;br/&gt;&amp;gt; &amp;gt; (and
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; some other fixes in 2.3.x would be great to integrate).
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; I updated tomee snapshot to use the openjpa snapshot to see if we have
&lt;br/&gt;&amp;gt; &amp;gt; any
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; side effect but having some inputs to know if a release could be done
&lt;br/&gt;&amp;gt; &amp;gt; soon
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; would be great.
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; *Romain Manni-Bucau*
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; *Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; *Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; &lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; *LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt; *Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&lt;/div&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/release-2-3-x-tp7583967p7583972.html" />
		<thr:in-reply-to ref="tag:openjpa.208410.n2.nabble.com,2006:post-7583971"/>
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583971</id>
		<title>Re: release 2.3.x</title>
		<published>2013-05-20T10:44:35Z</published>
		<updated>2013-05-20T10:44:35Z</updated>
		<author>
			<name>Romain Manni-Bucau</name>
		</author>
		<content type="html">
			basically 2 features (if you need jira number just ask i'll try to find
&lt;br/&gt;them back):
&lt;br/&gt;&lt;br/&gt;- ASM &amp;quot;facade&amp;quot; to be able to use xbean asm shade instead of asm.jar
&lt;br/&gt;(blocking for tomee if not in the box)
&lt;br/&gt;- the criteria api bug where only a single groupby or having was used (&amp;quot;, &amp;quot;
&lt;br/&gt;was missing when the jpql was created)
&lt;br/&gt;&lt;br/&gt;*Romain Manni-Bucau*
&lt;br/&gt;*Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;*Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;&lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;*LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;*Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;2013/5/20 Kevin Sutter &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583971&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;
&lt;br/&gt;&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; Hi Romain,
&lt;br/&gt;&amp;gt; We currently don't have any plans for cutting a 2.3.0 release... &amp;nbsp;A few of
&lt;br/&gt;&amp;gt; us actually discussed it a couple of weeks back, but we didn't come up with
&lt;br/&gt;&amp;gt; enough &amp;quot;features&amp;quot; to warrant a 2.3.0 release. &amp;nbsp;Do you have a list of the
&lt;br/&gt;&amp;gt; JIRAs that you have an interest in?
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; If there are other users of trunk that would like to see a 2.3.0 release,
&lt;br/&gt;&amp;gt; please voice your interest.
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; Thanks,
&lt;br/&gt;&amp;gt; Kevin
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; On Mon, May 20, 2013 at 9:50 AM, Romain Manni-Bucau
&lt;br/&gt;&amp;gt; &amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583971&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;wrote:
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; Hi guys,
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; any plan to release 2.3.0?
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; basically i'd like to get rid of openejb shade for next tomee release
&lt;br/&gt;&amp;gt; (and
&lt;br/&gt;&amp;gt; &amp;gt; some other fixes in 2.3.x would be great to integrate).
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; I updated tomee snapshot to use the openjpa snapshot to see if we have
&lt;br/&gt;&amp;gt; any
&lt;br/&gt;&amp;gt; &amp;gt; side effect but having some inputs to know if a release could be done
&lt;br/&gt;&amp;gt; soon
&lt;br/&gt;&amp;gt; &amp;gt; would be great.
&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; *Romain Manni-Bucau*
&lt;br/&gt;&amp;gt; &amp;gt; *Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;&amp;gt; &amp;gt; *Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;
&lt;br/&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;gt; *LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt; *Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&lt;/div&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/release-2-3-x-tp7583967p7583971.html" />
		<thr:in-reply-to ref="tag:openjpa.208410.n2.nabble.com,2006:post-7583970"/>
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583970</id>
		<title>Re: release 2.3.x</title>
		<published>2013-05-20T10:40:17Z</published>
		<updated>2013-05-20T10:40:17Z</updated>
		<author>
			<name>Kevin Sutter</name>
		</author>
		<content type="html">
			Hi Romain,
&lt;br/&gt;We currently don't have any plans for cutting a 2.3.0 release... &amp;nbsp;A few of
&lt;br/&gt;us actually discussed it a couple of weeks back, but we didn't come up with
&lt;br/&gt;enough &amp;quot;features&amp;quot; to warrant a 2.3.0 release. &amp;nbsp;Do you have a list of the
&lt;br/&gt;JIRAs that you have an interest in?
&lt;br/&gt;&lt;br/&gt;If there are other users of trunk that would like to see a 2.3.0 release,
&lt;br/&gt;please voice your interest.
&lt;br/&gt;&lt;br/&gt;Thanks,
&lt;br/&gt;Kevin
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;On Mon, May 20, 2013 at 9:50 AM, Romain Manni-Bucau
&lt;br/&gt;&amp;lt;&lt;a href=&quot;/user/SendEmail.jtp?type=node&amp;node=7583970&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;[hidden email]&lt;/a&gt;&amp;gt;wrote:
&lt;br/&gt;&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; Hi guys,
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; any plan to release 2.3.0?
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; basically i'd like to get rid of openejb shade for next tomee release (and
&lt;br/&gt;&amp;gt; some other fixes in 2.3.x would be great to integrate).
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; I updated tomee snapshot to use the openjpa snapshot to see if we have any
&lt;br/&gt;&amp;gt; side effect but having some inputs to know if a release could be done soon
&lt;br/&gt;&amp;gt; would be great.
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; *Romain Manni-Bucau*
&lt;br/&gt;&amp;gt; *Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;&amp;gt; *Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;
&lt;br/&gt;&amp;gt; &lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;&amp;gt; *LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt; *Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;&amp;gt;
&lt;br/&gt;&lt;/div&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/release-2-3-x-tp7583967p7583970.html" />
		<thr:in-reply-to ref="tag:openjpa.208410.n2.nabble.com,2006:post-7583967"/>
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583967</id>
		<title>release 2.3.x</title>
		<published>2013-05-20T07:50:33Z</published>
		<updated>2013-05-20T07:50:33Z</updated>
		<author>
			<name>Romain Manni-Bucau</name>
		</author>
		<content type="html">
			Hi guys,
&lt;br/&gt;&lt;br/&gt;any plan to release 2.3.0?
&lt;br/&gt;&lt;br/&gt;basically i'd like to get rid of openejb shade for next tomee release (and
&lt;br/&gt;some other fixes in 2.3.x would be great to integrate).
&lt;br/&gt;&lt;br/&gt;I updated tomee snapshot to use the openjpa snapshot to see if we have any
&lt;br/&gt;side effect but having some inputs to know if a release could be done soon
&lt;br/&gt;would be great.
&lt;br/&gt;&lt;br/&gt;*Romain Manni-Bucau*
&lt;br/&gt;*Twitter: @rmannibucau &amp;lt;&lt;a href=&quot;https://twitter.com/rmannibucau&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://twitter.com/rmannibucau&lt;/a&gt;&amp;gt;*
&lt;br/&gt;*Blog: **&lt;a href=&quot;http://rmannibucau.wordpress.com/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/*&lt;/a&gt;&amp;lt;&lt;a href=&quot;http://rmannibucau.wordpress.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://rmannibucau.wordpress.com/&lt;/a&gt;&amp;gt;
&lt;br/&gt;*LinkedIn: **&lt;a href=&quot;http://fr.linkedin.com/in/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://fr.linkedin.com/in/rmannibucau*&lt;/a&gt;&lt;br/&gt;*Github: &lt;a href=&quot;https://github.com/rmannibucau*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/rmannibucau*&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/release-2-3-x-tp7583967.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583959</id>
		<title>[jira] [Commented] (OPENJPA-1979) Regression for non-standard joins with constant column values</title>
		<published>2013-05-19T11:03:16Z</published>
		<updated>2013-05-19T11:03:16Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			&lt;br/&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-1979?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=13661615#comment-13661615&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-1979?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;amp;focusedCommentId=13661615#comment-13661615&lt;/a&gt;&amp;nbsp;] 
&lt;br/&gt;&lt;br/&gt;ASF subversion and git services commented on OPENJPA-1979:
&lt;br/&gt;----------------------------------------------------------
&lt;br/&gt;&lt;br/&gt;Commit 1484326 from hthomann
&lt;br/&gt;[ &lt;a href=&quot;https://svn.apache.org/r1484326&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://svn.apache.org/r1484326&lt;/a&gt;&amp;nbsp;]
&lt;br/&gt;&lt;br/&gt;OPENJPA-1979: Regression for non-standard joins with constant column values - back ported to 2.2.x Pinaki Poddar's trunk changes.
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; Regression for non-standard joins with constant column values 
&lt;br/&gt;&amp;gt; --------------------------------------------------------------
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: OPENJPA-1979
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-1979&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-1979&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: OpenJPA
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Components: jdbc, kernel
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: 2.0.0-M1, 2.0.0
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: 2.3.0
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: OPENJPA-1979.patch.1.txt, Test-1979.zip
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; The non-standard join can use constant column values by enclosing them in single-quote character. This behavior is regressed. The likely cause of this regression is new delimiting support for schema elements introduced in JPA 2.0. The constant column value used to be detected during schema definition based on the assumption of the name being enclosed in single-quote. Due to introduction of delimiting capability, the constant value is now enclosed in double-quote followed by a single-quote. &amp;nbsp; 
&lt;br/&gt;&amp;gt; The visible effect is failure to define schema for non-standard join with constant values.
&lt;/div&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Commented-OPENJPA-1979-Regression-for-non-standard-joins-with-constant-column-values-tp7583959.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583958</id>
		<title>[jira] [Commented] (OPENJPA-2373) MapsId in a Child entity to a Parent entity using auto-assigned identity fails with duplicte INSERT SQL</title>
		<published>2013-05-19T11:03:16Z</published>
		<updated>2013-05-19T11:03:16Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			&lt;br/&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2373?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=13661613#comment-13661613&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2373?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;amp;focusedCommentId=13661613#comment-13661613&lt;/a&gt;&amp;nbsp;] 
&lt;br/&gt;&lt;br/&gt;ASF subversion and git services commented on OPENJPA-2373:
&lt;br/&gt;----------------------------------------------------------
&lt;br/&gt;&lt;br/&gt;Commit 1484325 from hthomann
&lt;br/&gt;[ &lt;a href=&quot;https://svn.apache.org/r1484325&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://svn.apache.org/r1484325&lt;/a&gt;&amp;nbsp;]
&lt;br/&gt;&lt;br/&gt;OPENJPA-2373: MapsId in a Child entity to a Parent entity using auto-assigned identity fails with duplicte INSERT SQL - back ported to 2.2.x Pinaki Poddar's trunk changes.
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; MapsId in a Child entity to a Parent entity using auto-assigned identity fails with duplicte INSERT SQL 
&lt;br/&gt;&amp;gt; --------------------------------------------------------------------------------------------------------
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: OPENJPA-2373
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2373&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2373&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: OpenJPA
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: 2.0.0, 2.0.1, 2.1.1, 2.2.1
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: 2.3.0
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: graycol.gif
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; A MapsId annotation in entity C (child) annotates a field p of type P (parent). P uses auto-generated identity. 
&lt;br/&gt;&amp;gt; P-C is a bidirectional parent-child relationship.
&lt;br/&gt;&amp;gt; &amp;nbsp;
&lt;br/&gt;&amp;gt; During flush sequence, A row is created for P and flushed for the database to assign an identity. When C is flushed, it wrongly creates a row for P again while handling the field p that points to parent.
&lt;br/&gt;&amp;gt; Of course, the commit breaks with a DuplicateKeyException on P's table. 
&lt;/div&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Commented-OPENJPA-2373-MapsId-in-a-Child-entity-to-a-Parent-entity-using-auto-assigned-identityL-tp7583958.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583956</id>
		<title>[jira] [Commented] (OPENJPA-1979) Regression for non-standard joins with constant column values</title>
		<published>2013-05-19T10:55:15Z</published>
		<updated>2013-05-19T10:55:15Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			&lt;br/&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-1979?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=13661608#comment-13661608&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-1979?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;amp;focusedCommentId=13661608#comment-13661608&lt;/a&gt;&amp;nbsp;] 
&lt;br/&gt;&lt;br/&gt;ASF subversion and git services commented on OPENJPA-1979:
&lt;br/&gt;----------------------------------------------------------
&lt;br/&gt;&lt;br/&gt;Commit 1484322 from hthomann
&lt;br/&gt;[ &lt;a href=&quot;https://svn.apache.org/r1484322&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://svn.apache.org/r1484322&lt;/a&gt;&amp;nbsp;]
&lt;br/&gt;&lt;br/&gt;OPENJPA-1979: Regression for non-standard joins with constant column values - back ported to 2.2.1.x Pinaki Poddar's trunk changes.
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; Regression for non-standard joins with constant column values 
&lt;br/&gt;&amp;gt; --------------------------------------------------------------
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: OPENJPA-1979
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-1979&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-1979&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: OpenJPA
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Components: jdbc, kernel
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: 2.0.0-M1, 2.0.0
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: 2.3.0
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: OPENJPA-1979.patch.1.txt, Test-1979.zip
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; The non-standard join can use constant column values by enclosing them in single-quote character. This behavior is regressed. The likely cause of this regression is new delimiting support for schema elements introduced in JPA 2.0. The constant column value used to be detected during schema definition based on the assumption of the name being enclosed in single-quote. Due to introduction of delimiting capability, the constant value is now enclosed in double-quote followed by a single-quote. &amp;nbsp; 
&lt;br/&gt;&amp;gt; The visible effect is failure to define schema for non-standard join with constant values.
&lt;/div&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Commented-OPENJPA-1979-Regression-for-non-standard-joins-with-constant-column-values-tp7583956.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583954</id>
		<title>[jira] [Commented] (OPENJPA-2373) MapsId in a Child entity to a Parent entity using auto-assigned identity fails with duplicte INSERT SQL</title>
		<published>2013-05-19T10:41:15Z</published>
		<updated>2013-05-19T10:41:15Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			&lt;br/&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2373?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=13661607#comment-13661607&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2373?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;amp;focusedCommentId=13661607#comment-13661607&lt;/a&gt;&amp;nbsp;] 
&lt;br/&gt;&lt;br/&gt;ASF subversion and git services commented on OPENJPA-2373:
&lt;br/&gt;----------------------------------------------------------
&lt;br/&gt;&lt;br/&gt;Commit 1484320 from hthomann
&lt;br/&gt;[ &lt;a href=&quot;https://svn.apache.org/r1484320&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://svn.apache.org/r1484320&lt;/a&gt;&amp;nbsp;]
&lt;br/&gt;&lt;br/&gt;OPENJPA-2373: MapsId in a Child entity to a Parent entity using auto-assigned identity fails with duplicte INSERT SQL - back ported to 2.2.1.x Pinaki Poddar's trunk changes.
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; MapsId in a Child entity to a Parent entity using auto-assigned identity fails with duplicte INSERT SQL 
&lt;br/&gt;&amp;gt; --------------------------------------------------------------------------------------------------------
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: OPENJPA-2373
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2373&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2373&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: OpenJPA
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: 2.0.0, 2.0.1, 2.1.1, 2.2.1
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: 2.3.0
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: graycol.gif
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; A MapsId annotation in entity C (child) annotates a field p of type P (parent). P uses auto-generated identity. 
&lt;br/&gt;&amp;gt; P-C is a bidirectional parent-child relationship.
&lt;br/&gt;&amp;gt; &amp;nbsp;
&lt;br/&gt;&amp;gt; During flush sequence, A row is created for P and flushed for the database to assign an identity. When C is flushed, it wrongly creates a row for P again while handling the field p that points to parent.
&lt;br/&gt;&amp;gt; Of course, the commit breaks with a DuplicateKeyException on P's table. 
&lt;/div&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Commented-OPENJPA-2373-MapsId-in-a-Child-entity-to-a-Parent-entity-using-auto-assigned-identityL-tp7583954.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583952</id>
		<title>[jira] [Commented] (OPENJPA-1979) Regression for non-standard joins with constant column values</title>
		<published>2013-05-19T10:07:16Z</published>
		<updated>2013-05-19T10:07:16Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			&lt;br/&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-1979?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=13661601#comment-13661601&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-1979?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;amp;focusedCommentId=13661601#comment-13661601&lt;/a&gt;&amp;nbsp;] 
&lt;br/&gt;&lt;br/&gt;ASF subversion and git services commented on OPENJPA-1979:
&lt;br/&gt;----------------------------------------------------------
&lt;br/&gt;&lt;br/&gt;Commit 1484313 from hthomann
&lt;br/&gt;[ &lt;a href=&quot;https://svn.apache.org/r1484313&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://svn.apache.org/r1484313&lt;/a&gt;&amp;nbsp;]
&lt;br/&gt;&lt;br/&gt;OPENJPA-1979: Regression for non-standard joins with constant column values - back ported to 2.1.x Pinaki Poddar's trunk changes.
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; Regression for non-standard joins with constant column values 
&lt;br/&gt;&amp;gt; --------------------------------------------------------------
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: OPENJPA-1979
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-1979&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-1979&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: OpenJPA
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Components: jdbc, kernel
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: 2.0.0-M1, 2.0.0
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: 2.3.0
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: OPENJPA-1979.patch.1.txt, Test-1979.zip
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; The non-standard join can use constant column values by enclosing them in single-quote character. This behavior is regressed. The likely cause of this regression is new delimiting support for schema elements introduced in JPA 2.0. The constant column value used to be detected during schema definition based on the assumption of the name being enclosed in single-quote. Due to introduction of delimiting capability, the constant value is now enclosed in double-quote followed by a single-quote. &amp;nbsp; 
&lt;br/&gt;&amp;gt; The visible effect is failure to define schema for non-standard join with constant values.
&lt;/div&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Commented-OPENJPA-1979-Regression-for-non-standard-joins-with-constant-column-values-tp7583952.html" />
		
	</entry>
	<entry>
		<id>tag:openjpa.208410.n2.nabble.com,2006:post-7583950</id>
		<title>[jira] [Commented] (OPENJPA-2373) MapsId in a Child entity to a Parent entity using auto-assigned identity fails with duplicte INSERT SQL</title>
		<published>2013-05-19T08:45:16Z</published>
		<updated>2013-05-19T08:45:16Z</updated>
		<author>
			<name>JIRA jira@apache.org</name>
		</author>
		<content type="html">
			&lt;br/&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2373?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=13661575#comment-13661575&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2373?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;amp;focusedCommentId=13661575#comment-13661575&lt;/a&gt;&amp;nbsp;] 
&lt;br/&gt;&lt;br/&gt;ASF subversion and git services commented on OPENJPA-2373:
&lt;br/&gt;----------------------------------------------------------
&lt;br/&gt;&lt;br/&gt;Commit 1484300 from hthomann
&lt;br/&gt;[ &lt;a href=&quot;https://svn.apache.org/r1484300&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://svn.apache.org/r1484300&lt;/a&gt;&amp;nbsp;]
&lt;br/&gt;&lt;br/&gt;OPENJPA-2373: MapsId in a Child entity to a Parent entity using auto-assigned identity fails with duplicte INSERT SQL - back ported to 2.1.x Pinaki Poddar's trunk changes.
&lt;br/&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;div class='shrinkable-quote'&gt;&lt;br/&gt;&amp;gt; MapsId in a Child entity to a Parent entity using auto-assigned identity fails with duplicte INSERT SQL 
&lt;br/&gt;&amp;gt; --------------------------------------------------------------------------------------------------------
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: OPENJPA-2373
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/OPENJPA-2373&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://issues.apache.org/jira/browse/OPENJPA-2373&lt;/a&gt;&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: OpenJPA
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: 2.0.0, 2.0.1, 2.1.1, 2.2.1
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Pinaki Poddar
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: 2.3.0
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: graycol.gif
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt;
&lt;br/&gt;&amp;gt; A MapsId annotation in entity C (child) annotates a field p of type P (parent). P uses auto-generated identity. 
&lt;br/&gt;&amp;gt; P-C is a bidirectional parent-child relationship.
&lt;br/&gt;&amp;gt; &amp;nbsp;
&lt;br/&gt;&amp;gt; During flush sequence, A row is created for P and flushed for the database to assign an identity. When C is flushed, it wrongly creates a row for P again while handling the field p that points to parent.
&lt;br/&gt;&amp;gt; Of course, the commit breaks with a DuplicateKeyException on P's table. 
&lt;/div&gt;&lt;br/&gt;--
&lt;br/&gt;This message is automatically generated by JIRA.
&lt;br/&gt;If you think it was sent incorrectly, please contact your JIRA administrators
&lt;br/&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="http://openjpa.208410.n2.nabble.com/jira-Commented-OPENJPA-2373-MapsId-in-a-Child-entity-to-a-Parent-entity-using-auto-assigned-identityL-tp7583950.html" />
		
	</entry>
</feed>