Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Database/Postgres94.php')
-rw-r--r--src/Database/Postgres94.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/Database/Postgres94.php b/src/Database/Postgres94.php
new file mode 100644
index 00000000..c62a33ea
--- /dev/null
+++ b/src/Database/Postgres94.php
@@ -0,0 +1,28 @@
+<?php
+
+/**
+ * PHPPgAdmin6
+ */
+
+namespace PHPPgAdmin\Database;
+
+use PHPPgAdmin\Help\PostgresDoc94;
+
+/**
+ * @file
+ * PostgreSQL 9.4 support
+ */
+class Postgres94 extends Postgres95
+{
+ public $typIndexes = ['BTREE', 'RTREE', 'GIST', 'GIN', 'HASH', 'SP-GIST'];
+
+ /**
+ * @var class-string
+ */
+ public $help_classname = PostgresDoc94::class;
+
+ /**
+ * @var float
+ */
+ public $major_version = 9.4;
+}