diff options
author | David Rowley <drowley@postgresql.org> | 2023-09-29 00:02:22 +1300 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2023-09-29 00:02:22 +1300 |
commit | c4a1933b48472eed0326462098091b47ffd7a14e (patch) | |
tree | 582031d7ead68a1ccaca4621bb692bd67a6f3385 | |
parent | c68f78538f93803b5c4f879da12918762eb43482 (diff) | |
download | postgresql-c4a1933b48472eed0326462098091b47ffd7a14e.tar.gz postgresql-c4a1933b48472eed0326462098091b47ffd7a14e.zip |
Add missing TidRangePath handling in print_path()
Tid Range scans were added back in bb437f995. That commit forgot to add
handling for TidRangePaths in print_path().
Only people building with OPTIMIZER_DEBUG might have noticed this, which
likely is the reason it's taken 4 years for anyone to notice.
Author: Andrey Lepikhov
Reported-by: Andrey Lepikhov
Discussion: https://postgr.es/m/379082d6-1b6a-4cd6-9ecf-7157d8c08635@postgrespro.ru
Backpatch-through: 14, where bb437f995 was introduced
-rw-r--r-- | src/backend/optimizer/path/allpaths.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/backend/optimizer/path/allpaths.c b/src/backend/optimizer/path/allpaths.c index 9bdc70c702e..f75e0f99cb9 100644 --- a/src/backend/optimizer/path/allpaths.c +++ b/src/backend/optimizer/path/allpaths.c @@ -4470,6 +4470,9 @@ print_path(PlannerInfo *root, Path *path, int indent) case T_TidPath: ptype = "TidScan"; break; + case T_TidRangePath: + ptype = "TidRangePath"; + break; case T_SubqueryScanPath: ptype = "SubqueryScan"; break; |