Uploaded image for project: 'OpenJPA'
  1. OpenJPA
  2. OPENJPA-2390

HSQLDB SELECT NEXT VALUE FOR Sequence will skip 1 sequence value if allocation size is 1

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 2.2.1
    • 2.3.0
    • jdbc
    • None
    • Patch Available

    Description

      The HSQLDictionary sets the DBDictionary.nextSequenceQuery to "SELECT NEXT VALUE FOR

      {0} FROM INFORMATION_SCHEMA.SYSTEM_SEQUENCES" when the HSQLDictionary is initialized.

      The NativeJDBCSeq uses
      _select = MessageFormat.format(format, new Object[]{name, String.valueOf(_allocate * _increment)});
      to build the select next value sql. The format is pased 2 arguments "name" and "_allocate * _increment"
      but the second is not honored by the nextSequenceQuery.

      So when the allocation size is set to 1 the hsqldb nextSequenceQuery statement will return 2 next values
      anyway. That is why always one next value will be skipped... 1, 3, 5, 7, and so on.

      The nextSequenceQuery should be set with an limit. E.g.
      "SELECT NEXT VALUE FOR {0}

      FROM INFORMATION_SCHEMA.SYSTEM_SEQUENCES LIMIT

      {1}

      "

      I will attatch an unit test that uses in memory hsqldb to show the problem soon.

      Attachments

        1. HSQLSequenceTest.java
          2 kB
          René Link
        2. OPENJPA-2390.patch
          12 kB
          Di Wu Lau

        Activity

          People

            allee8285 Albert Lee
            rene.link René Link
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: