From e2b103a34363176e1ae019c37b08bb3f6234274c Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Mon, 9 Jan 2023 15:54:44 -0800 Subject: [PATCH] Updated version check [skip ci] --- src/ivfflat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ivfflat.h b/src/ivfflat.h index d9345b2..554bf85 100644 --- a/src/ivfflat.h +++ b/src/ivfflat.h @@ -3,8 +3,8 @@ #include "postgres.h" -#if PG_VERSION_NUM < 100000 -#error "Requires PostgreSQL 10+" +#if PG_VERSION_NUM < 110000 +#error "Requires PostgreSQL 11+" #endif #include "access/generic_xlog.h"