/* * Hibernate, Relational Persistence for Idiomatic Java * * Copyright (c) 2012, Red Hat Inc. or third-party contributors as * indicated by the @author tags or express copyright attribution * statements applied by the authors. All third-party contributions are * distributed under license by Red Hat Inc. * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 USA */ package org.hibernate.test.hql.joinedSubclass; import org.junit.Test; import org.hibernate.Session; import org.hibernate.testing.TestForIssue; import org.hibernate.testing.junit4.BaseCoreFunctionalTestCase; /** * @author Steve Ebersole */ public class JoinedSubclassBulkManipTest extends BaseCoreFunctionalTestCase { @Override protected Class<?>[] getAnnotatedClasses() { return new Class[] { Employee.class }; } @Test @TestForIssue( jiraKey = "HHH-1657" ) public void testHqlDeleteOnJoinedSubclass() { Session s = openSession(); s.beginTransaction(); // syntax checking on the database... s.createQuery( "delete from Employee" ).executeUpdate(); s.createQuery( "delete from Person" ).executeUpdate(); s.createQuery( "delete from Employee e" ).executeUpdate(); s.createQuery( "delete from Person p" ).executeUpdate(); s.createQuery( "delete from Employee where name like 'S%'" ).executeUpdate(); s.createQuery( "delete from Employee e where e.name like 'S%'" ).executeUpdate(); s.createQuery( "delete from Person where name like 'S%'" ).executeUpdate(); s.createQuery( "delete from Person p where p.name like 'S%'" ).executeUpdate(); // now the forms that actually fail from problem underlying HHH-1657 // which is limited to references to properties mapped to column names existing in both tables // which is normally just the pks. super critical ;) s.createQuery( "delete from Employee where id = 1" ).executeUpdate(); s.createQuery( "delete from Employee e where e.id = 1" ).executeUpdate(); s.createQuery( "delete from Person where id = 1" ).executeUpdate(); s.createQuery( "delete from Person p where p.id = 1" ).executeUpdate(); s.getTransaction().commit(); s.close(); } @Test @TestForIssue( jiraKey = "HHH-1657" ) public void testHqlUpdateOnJoinedSubclass() { Session s = openSession(); s.beginTransaction(); // syntax checking on the database... s.createQuery( "update Employee set name = 'Some Other Name' where employeeNumber like 'A%'" ).executeUpdate(); s.createQuery( "update Employee e set e.name = 'Some Other Name' where e.employeeNumber like 'A%'" ).executeUpdate(); s.createQuery( "update Person set name = 'Some Other Name' where name like 'S%'" ).executeUpdate(); s.createQuery( "update Person p set p.name = 'Some Other Name' where p.name like 'S%'" ).executeUpdate(); // now the forms that actually fail from problem underlying HHH-1657 // which is limited to references to properties mapped to column names existing in both tables // which is normally just the pks. super critical ;) s.createQuery( "update Employee set name = 'Some Other Name' where id = 1" ).executeUpdate(); s.createQuery( "update Employee e set e.name = 'Some Other Name' where e.id = 1" ).executeUpdate(); s.createQuery( "update Person set name = 'Some Other Name' where id = 1" ).executeUpdate(); s.createQuery( "update Person p set p.name = 'Some Other Name' where p.id = 1" ).executeUpdate(); s.getTransaction().commit(); s.close(); } }