diff options
Diffstat (limited to 'src/backend/access/gist/gist.c')
-rw-r--r-- | src/backend/access/gist/gist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index 70f8086db7b..4d858b65e1e 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -108,7 +108,7 @@ gisthandler(PG_FUNCTION_ARGS) amroutine->aminitparallelscan = NULL; amroutine->amparallelrescan = NULL; amroutine->amtranslatestrategy = NULL; - amroutine->amtranslatecmptype = NULL; + amroutine->amtranslatecmptype = gisttranslatecmptype; PG_RETURN_POINTER(amroutine); } |