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

Speed up population of tables in OrderByAndSortAvoidance

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 10.9.1.0
    • 10.9.1.0
    • Test
    • None

    Description

      OrderByAndSortAvoidance executes about 3000 INSERT and UPDATE statements to populate table1 and table2 in its decorateSQL() method. Since each of the statements has to be parsed and compiled, this could take quite some time on less powerful hardware.

      There are essentially three kinds of statements, and they could be parametrized like this:

      INSERT INTO table1 VALUES

      INSERT INTO table2 VALUES (?,?,?)

      UPDATE table2 SET value='true' WHERE id=? AND name='has_address'

      We should parametrize the statements, prepare them once and execute them multiple times in order to speed up the test.

      Attachments

        1. d5695-1a.diff
          648 kB
          Knut Anders Hatlen

        Issue Links

          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: