From d667b49f5f6f44852efc423dc1e22f9dd9cd63a2 Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Wed, 19 May 2010 10:45:30 +0000 Subject: [PATCH] MINOR Removed unused MSSQLDatabase::fulltext() method which did nothing but echo a debug statement --- code/MSSQLDatabase.php | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/code/MSSQLDatabase.php b/code/MSSQLDatabase.php index 17188dd..3d2d347 100644 --- a/code/MSSQLDatabase.php +++ b/code/MSSQLDatabase.php @@ -974,21 +974,6 @@ class MSSQLDatabase extends SS_Database { return "\""; } - /** - * Create a fulltext search datatype for MSSQL. - * - * @param array $spec - */ - function fulltext($table, $spec){ - //$spec['name'] is the column we've created that holds all the words we want to index. - //This is a coalesced collection of multiple columns if necessary - //$spec='create index ix_' . $table . '_' . $spec['name'] . ' on ' . $table . ' using gist(' . $spec['name'] . ');'; - - //return $spec; - echo 'full text just got called!
'; - return ''; - } - /** * This returns the column which is the primary key for each table * In Postgres, it is a SERIAL8, which is the equivalent of an auto_increment