From 52a62a3f0785053d58d722d828b7bcabb0c4a01f Mon Sep 17 00:00:00 2001 From: xzilla Date: Tue, 30 Oct 2007 19:23:19 +0000 Subject: [PATCH] add support for Gin indexes --- classes/database/Postgres82.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/classes/database/Postgres82.php b/classes/database/Postgres82.php index 779e7a4a..66a0be38 100644 --- a/classes/database/Postgres82.php +++ b/classes/database/Postgres82.php @@ -3,7 +3,7 @@ /** * PostgreSQL 8.2 support * - * $Id: Postgres82.php,v 1.8 2007/09/29 09:09:45 ioguix Exp $ + * $Id: Postgres82.php,v 1.9 2007/10/30 19:23:19 xzilla Exp $ */ include_once('./classes/database/Postgres81.php'); @@ -12,6 +12,9 @@ class Postgres82 extends Postgres81 { var $major_version = 8.2; + // Array of allowed index types + var $typIndexes = array('BTREE', 'RTREE', 'GIST', 'GIN', 'HASH'); + // Last oid assigned to a system object var $_lastSystemOID = 17231; -- 2.39.5