Examples of AnsiTrimEmulationFunction


Examples of org.hibernate.dialect.function.AnsiTrimEmulationFunction

    expected = expectedPostTrimPrefix + "ltrim(rtrim(" + expectedTrimPrep + "))" + expectedPostTrimSuffix;
    assertEquals( expected, rendered );
  }

  public void testBasicSybaseProcessing() {
    AnsiTrimEmulationFunction function = new AnsiTrimEmulationFunction(
        AnsiTrimEmulationFunction.LTRIM,
        AnsiTrimEmulationFunction.RTRIM,
        "str_replace"
    );

    performBasicSpaceTrimmingTests( function );

    final String expectedTrimPrep = "str_replace(str_replace(a.column,' ','${space}$'),'-',' ')";
    final String expectedPostTrimPrefix = "str_replace(str_replace(";
    final String expectedPostTrimSuffix = ",' ','-'),'${space}$',' ')";

    // -> trim(LEADING '-' FROM a.column)
    String rendered = function.render( argList( "LEADING", "'-'", "FROM", trimSource ), null );
    String expected = expectedPostTrimPrefix + "ltrim(" + expectedTrimPrep + ")" + expectedPostTrimSuffix;
    assertEquals( expected, rendered );

    // -> trim(TRAILING '-' FROM a.column)
    rendered = function.render( argList( "TRAILING", "'-'", "FROM", trimSource ), null );
    expected = expectedPostTrimPrefix + "rtrim(" + expectedTrimPrep + ")" + expectedPostTrimSuffix;
    assertEquals( expected, rendered );

    // -> trim(BOTH '-' FROM a.column)
    rendered = function.render( argList( "BOTH", "'-'", "FROM", trimSource ), null );
    expected = expectedPostTrimPrefix + "ltrim(rtrim(" + expectedTrimPrep + "))" + expectedPostTrimSuffix;
    assertEquals( expected, rendered );

    // -> trim('-' FROM a.column)
    rendered = function.render( argList( "'-'", "FROM", trimSource ), null );
    expected = expectedPostTrimPrefix + "ltrim(rtrim(" + expectedTrimPrep + "))" + expectedPostTrimSuffix;
    assertEquals( expected, rendered );
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.