optimizer cost calculation problem - Mailing list pgsql-hackers

From Tatsuo Ishii
Subject optimizer cost calculation problem
Date
Msg-id 20030401.073726.112626637.t-ishii@sra.co.jp
Whole thread Raw
Responses Re: optimizer cost calculation problem  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
Kenji Sugita has identified a problem with cost_sort() in costsize.c.

In the following code fragment, sortmembytes is defined as long. So
    double        nruns = nbytes / (sortmembytes * 2);

may cause an integer overflow if sortmembytes exceeds 2^30, which in
turn make optimizer to produce wrong query plan(this actually happned
in a large PostgreSQL installation which has tons of memory). Here is a
proposed fix against current:

*** optimizer/path/costsize.c    16 Feb 2003 02:30:38 -0000    1.107
--- optimizer/path/costsize.c    31 Mar 2003 22:25:06 -0000
***************
*** 490,496 ****     Cost        startup_cost = input_cost;     Cost        run_cost = 0;     double        nbytes =
relation_byte_size(tuples,width);
 
!     long        sortmembytes = SortMem * 1024L;      if (!enable_sort)         startup_cost += disable_cost;
--- 490,496 ----     Cost        startup_cost = input_cost;     Cost        run_cost = 0;     double        nbytes =
relation_byte_size(tuples,width);
 
!     double        sortmembytes = SortMem * 1024.0;      if (!enable_sort)         startup_cost += disable_cost;



pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: ltree patch
Next
From: "Ed L."
Date:
Subject: Re: index corruption?