blob: 29e268e92cae1127867869a33731ab9646b43c1c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 Oracle and/or its affiliates. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.testing.tests.jpql;
import org.eclipse.persistence.testing.models.employee.domain.*;
public class SimpleEscapeUnderscoreTest extends JPQLTestCase {
private Address addressWithUnderscore;
public void setup() {
String ejbqlString = null;
addressWithUnderscore = new Address();
addressWithUnderscore.setCity("Perth");
addressWithUnderscore.setCountry("Canada");
addressWithUnderscore.setProvince("ONT");
addressWithUnderscore.setPostalCode("Y3Q2N9");
addressWithUnderscore.setStreet("234 Wandering _Way");
this.getDatabaseSession().insertObject(addressWithUnderscore);
setOriginalOject(addressWithUnderscore);
//test the apostrophe
ejbqlString = "SELECT OBJECT(address) FROM Address address WHERE ";
// \ is always treated as escape in MySQL. Therefore ESCAPE '\' is considered a syntax error
if (getSession().getLogin().getPlatform().isMySQL() || getSession().getLogin().getPlatform().isPostgreSQL()) {
ejbqlString = ejbqlString + "address.street LIKE '234 Wandering $_Way' ESCAPE '$'";
} else {
ejbqlString = ejbqlString + "address.street LIKE '234 Wandering \\_Way' ESCAPE '\\'";
}
setEjbqlString(ejbqlString);
setReferenceClass(Address.class);
super.setup();
}
public void reset() {
//delete the address we inserted for this test
getDatabaseSession().deleteObject(addressWithUnderscore);
super.reset();
}
}