From: João Henrique Freitas Date: Mon, 25 Jan 2010 07:30:46 +0000 (+0100) Subject: Fix dbi driver with bvfs X-Git-Tag: Release-5.0.0~2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8ad2efd74a43c20477c816a2d313f6d8be06df54;p=bacula%2Fbacula Fix dbi driver with bvfs --- diff --git a/bacula/src/cats/dbi.c b/bacula/src/cats/dbi.c index 7a039ba255..16e7546bd4 100644 --- a/bacula/src/cats/dbi.c +++ b/bacula/src/cats/dbi.c @@ -1281,17 +1281,6 @@ const char *my_dbi_batch_unlock_tables_query[4] = { /* SQLite3 */ "COMMIT"}; -const char *my_dbi_match[4] = { - /* Mysql */ - "MATCH", - /* Postgresql */ - "~", - /* SQLite */ - "MATCH", - /* SQLite3 */ - "MATCH" -}; - const char *my_dbi_batch_fill_path_query[4] = { /* Mysql */ "INSERT INTO Path (Path) " @@ -1335,4 +1324,15 @@ const char *my_dbi_batch_fill_filename_query[4] = { #endif /* HAVE_BATCH_FILE_INSERT */ +const char *my_dbi_match[4] = { + /* Mysql */ + "MATCH", + /* Postgresql */ + "~", + /* SQLite */ + "MATCH", + /* SQLite3 */ + "MATCH" +}; + #endif /* HAVE_DBI */