Updated readme [skip ci]

This commit is contained in:
Andrew Kane
2023-11-03 17:02:30 -07:00
parent b5416d6f10
commit 35cd7b63cb

View File

@@ -438,6 +438,8 @@ SELECT ...
COMMIT;
```
Also, if the table is small, a table scan may be faster.
#### Why isnt a query using a parallel table scan?
The planner doesnt consider [out-of-line storage](https://www.postgresql.org/docs/current/storage-toast.html) in cost estimates, which can make a serial scan look cheaper. You can reduce the cost of a parallel scan for a query with: