mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +00:00
do not check if unlink() was successful
This commit is contained in:
parent
8ffcfab6e4
commit
c905e3a5eb
|
@ -55,8 +55,7 @@ class SeedDMS_SQLiteFTS_Indexer {
|
|||
* @param string $indexerDir directory on disk containing the index
|
||||
*/
|
||||
static function create($indexerDir) { /* {{{ */
|
||||
if(!@unlink($indexerDir.'/index.db'))
|
||||
return null;
|
||||
unlink($indexerDir.'/index.db');
|
||||
$index = new SeedDMS_SQLiteFTS_Indexer($indexerDir);
|
||||
$sql = 'CREATE VIRTUAL TABLE docs USING fts4(title, comment, keywords, category, owner, content, created, notindexed=created, matchinfo=fts3)';
|
||||
$res = $index->_conn->exec($sql);
|
||||
|
|
Loading…
Reference in New Issue
Block a user