diff options
author | David Rowley <drowley@postgresql.org> | 2024-03-13 09:34:11 +1300 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2024-03-13 09:34:11 +1300 |
commit | fe4750effd61f5a37d18c48caa53892dbdcfb96d (patch) | |
tree | 41295021d93043f57ce070384494dce3c05b9409 | |
parent | 61461a300c1cb5d53955ecd792ad0ce75a104736 (diff) | |
download | postgresql-fe4750effd61f5a37d18c48caa53892dbdcfb96d.tar.gz postgresql-fe4750effd61f5a37d18c48caa53892dbdcfb96d.zip |
Fix incorrect filename reference in comment
Author: Cary Huang
Discussion: https://postgr.es/m/18e34071af0.dbfc9663424635.8571906799773344646@highgo.ca
-rw-r--r-- | src/include/optimizer/paths.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/optimizer/paths.h b/src/include/optimizer/paths.h index 0e8a9c94ba6..b137c8a5896 100644 --- a/src/include/optimizer/paths.h +++ b/src/include/optimizer/paths.h @@ -83,7 +83,7 @@ extern bool match_index_to_operand(Node *operand, int indexcol, extern void check_index_predicates(PlannerInfo *root, RelOptInfo *rel); /* - * tidpath.h + * tidpath.c * routines to generate tid paths */ extern void create_tidscan_paths(PlannerInfo *root, RelOptInfo *rel); |