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