]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
strip column prefix lengths from key defs on pg
authorBrion Vibber <brion@pobox.com>
Tue, 19 Oct 2010 01:26:11 +0000 (18:26 -0700)
committerBrion Vibber <brion@pobox.com>
Tue, 19 Oct 2010 01:26:11 +0000 (18:26 -0700)
lib/pgsqlschema.php

index aa7f6733b09ad6fa66dddb64b5a770dd27d5565f..599f7ffca2778cd05413f7d7dfa78dc25a9a1c7d 100644 (file)
@@ -409,7 +409,33 @@ class PgsqlSchema extends Schema
             $col['type'] = $this->mapType($col);
             unset($col['size']);
         }
+        if (!empty($tableDef['primary key'])) {
+            $tableDef['primary key'] = $this->filterKeyDef($tableDef['primary key']);
+        }
+        if (!empty($tableDef['unique keys'])) {
+            foreach ($tableDef['unique keys'] as $i => $def) {
+                $tableDef['unique keys'][$i] = $this->filterKeyDef($def);
+            }
+        }
         return $tableDef;
     }
 
+    /**
+     * Filter the given key/index definition to match features available
+     * in this database.
+     *
+     * @param array $def
+     * @return array
+     */
+    function filterKeyDef(array $def)
+    {
+        // PostgreSQL doesn't like prefix lengths specified on keys...?
+        foreach ($def as $i => $item)
+        {
+            if (is_array($item)) {
+                $def[$i] = $item[0];
+            }
+        }
+        return $def;
+    }
 }