Fix HHH-11352 - the Pattern at buildShallowIndexPattern where "wordBoundary==true" should wrap the pattern properly with '\b'

(cherry picked from commit 56f7466d52)
This commit is contained in:
lsiu 2016-12-21 00:04:28 +08:00 committed by Gail Badner
parent a85bd30aaa
commit bc094901e0
2 changed files with 14 additions and 3 deletions

View File

@ -356,14 +356,15 @@ public class SQLServer2005LimitHandler extends AbstractLimitHandler {
* based on the search pattern that is not enclosed in parenthesis. * based on the search pattern that is not enclosed in parenthesis.
* *
* @param pattern String search pattern. * @param pattern String search pattern.
* @param wordBoundardy whether to apply a word boundary restriction. * @param wordBoundary whether to apply a word boundary restriction.
* @return Compiled {@link Pattern}. * @return Compiled {@link Pattern}.
*/ */
private static Pattern buildShallowIndexPattern(String pattern, boolean wordBoundardy) { private static Pattern buildShallowIndexPattern(String pattern, boolean wordBoundary) {
return Pattern.compile( return Pattern.compile(
"(" + "(" +
( wordBoundardy ? "\\b" : "" ) + ( wordBoundary ? "\\b" : "" ) +
pattern + pattern +
( wordBoundary ? "\\b" : "" ) +
")(?![^\\(|\\[]*(\\)|\\]))", ")(?![^\\(|\\[]*(\\)|\\]))",
Pattern.CASE_INSENSITIVE Pattern.CASE_INSENSITIVE
); );

View File

@ -127,6 +127,16 @@ public class SQLServer2005DialectTestCase extends BaseUnitTestCase {
); );
} }
@Test
@TestForIssue(jiraKey = "HHH-11352")
public void testPagingWithColumnNameStartingWithFrom() {
final String sql = "select column1 c1, from_column c2 from table1";
assertEquals( "WITH query AS (SELECT inner_query.*, ROW_NUMBER() OVER (ORDER BY CURRENT_TIMESTAMP) as __hibernate_row_nr__ FROM ( " +
"select column1 c1, from_column c2 from table1 ) inner_query ) " +
"SELECT c1, c2 FROM query WHERE __hibernate_row_nr__ >= ? AND __hibernate_row_nr__ < ?",
dialect.getLimitHandler().processSql(sql, toRowSelection(3, 5)));
}
@Test @Test
@TestForIssue(jiraKey = "HHH-7019") @TestForIssue(jiraKey = "HHH-7019")
public void testGetLimitStringWithSubselect() { public void testGetLimitStringWithSubselect() {