Type: real
Default: 0.1
Min: 0
Max: 1
Context: user
Restart: false

Sets the planner's estimate of the fraction of a cursor's rows that will be retrieved. The default is 0.1. Smaller values of this setting bias the planner towards using fast start plans for cursors, which will retrieve the first few rows quickly while perhaps taking a long time to fetch all rows. Larger values put more emphasis on the total estimated time. At the maximum setting of 1.0, cursors are planned exactly like regular queries, considering only the total estimated time and not how soon the first rows might be delivered.

Recommendations

Increase this to 0.9 if most of the time you're using cursors to step through all of the rows of a query result.

Comments