From 8ad2efd74a43c20477c816a2d313f6d8be06df54 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jo=C3=A3o=20Henrique=20Freitas?= Date: Mon, 25 Jan 2010 08:30:46 +0100 Subject: [PATCH] Fix dbi driver with bvfs --- bacula/src/cats/dbi.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) 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 */ -- 2.39.5