X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=doc%2Fhint_list.html;h=19cf41127dadbfbb8abae6a45735579d6a972d03;hb=46954dc84e0f1513a8d88edeb80d335b048dd484;hp=07bcbc9102db5a3fba16e0f649001d389b749a74;hpb=96a53290f63b65449e48225db7256c1fee5ed79f;p=pghintplan%2Fpg_hint_plan.git diff --git a/doc/hint_list.html b/doc/hint_list.html index 07bcbc9..19cf411 100755 --- a/doc/hint_list.html +++ b/doc/hint_list.html @@ -26,7 +26,7 @@ -Scan method +Scan method SeqScan(table) Forces sequential scan on the table TidScan(table) @@ -37,6 +37,8 @@ Forces index only scan on the table. Rstricts to specfied indexes if any. Index scan may be used if index only scan is not available. Available for PostgreSQL 9.2 and later. BitmapScan(table[ index...]) Forces bitmap scan on the table. Restoricts to specfied indexes if any. +IndexScanRegexp(table[ POSIX Regexp...])
IndexOnlyScanRegexp(table[ POSIX Regexp...])
BitmapScanRegexp(table[ POSIX Regexp...]) + Forces index scan or index only scan (For PostgreSQL 9.2 and later) or bitmap scan on the table. Restricts to indexes that matches the specified POSIX regular expression pattern NoSeqScan(table) Forces not to do sequential scan on the table. NoTidScan(table)