Uploaded image for project: 'Derby'
  1. Derby
  2. DERBY-5170

Client doesn't handle double quotes in savepoint names

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 10.7.1.1
    • 10.8.1.2
    • JDBC
    • None
    • Repro attached
    • Embedded/Client difference

    Description

      I added the following test case to SavepointJdbc30Test and saw that it failed with the client driver:

      public void testQuotes() throws SQLException

      { setAutoCommit(false); Statement s = createStatement(); s.execute("create table test_quotes(x int)"); s.execute("insert into test_quotes values 1"); Savepoint sp = getConnection().setSavepoint("a \" b ' c"); s.execute("insert into test_quotes values 2"); getConnection().rollback(sp); JDBC.assertSingleValueResultSet( s.executeQuery("select * from test_quotes"), "1"); }

      Embedded had no problems with the savepoint, but the client raised this error when calling setSavepoint():

      java.sql.SQLSyntaxErrorException: Syntax error: Encountered "b" at line 1, column 16.

      Attachments

        1. derby-5170-1a.diff
          7 kB
          Knut Anders Hatlen

        Activity

          People

            knutanders Knut Anders Hatlen
            knutanders Knut Anders Hatlen
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: