Removed unused import
This commit is contained in:
parent
88c692e9a5
commit
ec30987d3a
1 changed files with 4 additions and 2 deletions
|
@ -13,7 +13,7 @@ use std::thread;
|
||||||
use std::time;
|
use std::time;
|
||||||
|
|
||||||
use config::MiscSettings;
|
use config::MiscSettings;
|
||||||
use db::{self, ConnectionSource, DB};
|
use db::{self, ConnectionSource};
|
||||||
use db::{directories, misc_settings, songs};
|
use db::{directories, misc_settings, songs};
|
||||||
use vfs::{VFS, VFSSource};
|
use vfs::{VFS, VFSSource};
|
||||||
use errors::*;
|
use errors::*;
|
||||||
|
@ -22,7 +22,9 @@ use metadata;
|
||||||
const INDEX_BUILDING_INSERT_BUFFER_SIZE: usize = 1000; // Insertions in each transaction
|
const INDEX_BUILDING_INSERT_BUFFER_SIZE: usize = 1000; // Insertions in each transaction
|
||||||
const INDEX_BUILDING_CLEAN_BUFFER_SIZE: usize = 500; // Insertions in each transaction
|
const INDEX_BUILDING_CLEAN_BUFFER_SIZE: usize = 500; // Insertions in each transaction
|
||||||
|
|
||||||
no_arg_sql_function!(random, types::Integer, "Represents the SQL RANDOM() function");
|
no_arg_sql_function!(random,
|
||||||
|
types::Integer,
|
||||||
|
"Represents the SQL RANDOM() function");
|
||||||
|
|
||||||
pub enum Command {
|
pub enum Command {
|
||||||
REINDEX,
|
REINDEX,
|
||||||
|
|
Loading…
Add table
Reference in a new issue