]
Dimitrios Kordas commented on ARQ-1942:
---------------------------------------
If the following XML is used which starts at primary key 2 instead of 1, the test works.
<dataset>
<app_category id="1" description="entertainment category"
name="Entertainment" />
<app id="2" active="true" fqn="com.facebook"
name="facebook" app_category_id="1" />
<app id="3" active="true" fqn="com.twitter"
name="twitter" app_category_id="1" />
<app id="4" active="true" fqn="com.instagram"
name="instagram" app_category_id="1" />
</dataset>
Duplicate PK encountered when using a ApplyScriptBefore script
--------------------------------------------------------------
Key: ARQ-1942
URL:
https://issues.jboss.org/browse/ARQ-1942
Project: Arquillian
Issue Type: Bug
Components: Extension - Persistence
Affects Versions: persistence_1.0.0.Alpha6, persistence_1.0.0.Alpha7
Environment: Windows 8.1 Home, WildFly 8.2.0 Final, jdk1.8.0.40
Reporter: Dimitrios Kordas
Assignee: Bartosz Majsak
I am trying to create tests for hibernate under WildFly 8.2.0.
I can successfully create the war using Shrinkwrap, but when Arquillian tries to run the
script i provided using the @ApplyScriptBefore annotation hibernate complains about
duplicate primary keys even though all keys defined are sequential.
I encounter this error for specific primary keys. For example 1.
If i run the same script (only with an id of 2) multiple times it works.
I have tested the same thing using yaml and json formats and it doesn't work either.
INSERT INTO app_category(id, description, name) VALUES(1, 'entertainment apps',
'Entertainment');
INSERT INTO app(id,active,fqn,name,app_category_id)
VALUES(1,true,'com.facebook','Facebook',1);
INSERT INTO app(id,active,fqn,name,app_category_id)
VALUES(2,true,'com.twitter','Twitter',1);
INSERT INTO app(id,active,fqn,name,app_category_id)
VALUES(3,true,'com.instagram','Instagram',1);