X-Git-Url: http://sigaev.ru/git/gitweb.cgi?p=smlar.git;a=blobdiff_plain;f=smlar_gist.c;fp=smlar_gist.c;h=788876cf983c64d443d2ef6274756866b6ccb223;hp=382b9328114b9f7b77d13ed682bf36594006fe14;hb=92dc9c753b98700a2533d160c243b6ee24606943;hpb=8d02df18c0bbfd6ccba94a9582499ec8746047e5 diff --git a/smlar_gist.c b/smlar_gist.c index 382b932..788876c 100644 --- a/smlar_gist.c +++ b/smlar_gist.c @@ -380,7 +380,7 @@ gsmlsign_compress(PG_FUNCTION_ARGS) retval = (GISTENTRY *) palloc(sizeof(GISTENTRY)); gistentryinit(*retval, PointerGetDatum(sign), entry->rel, entry->page, - entry->offset, FALSE); + entry->offset, false); } else if ( ISSIGNKEY(DatumGetPointer(entry->key)) && !ISALLTRUE(DatumGetPointer(entry->key)) ) @@ -404,7 +404,7 @@ gsmlsign_compress(PG_FUNCTION_ARGS) gistentryinit(*retval, PointerGetDatum(sign), entry->rel, entry->page, - entry->offset, FALSE); + entry->offset, false); } } @@ -425,7 +425,7 @@ gsmlsign_decompress(PG_FUNCTION_ARGS) gistentryinit(*retval, PointerGetDatum(key), entry->rel, entry->page, - entry->offset, FALSE); + entry->offset, false); PG_RETURN_POINTER(retval); }