mirror of
https://github.com/silverstripe/silverstripe-mssql
synced 2024-10-22 06:05:53 +00:00
MINOR Removed unused MSSQLDatabase::fulltext() method which did nothing but echo a debug statement
This commit is contained in:
parent
b5edca6f91
commit
d667b49f5f
@ -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 '<span style="color: Red">full text just got called!</span><br>';
|
||||
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user