]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix dbi driver with bvfs
authorJoão Henrique Freitas <joaohf@gmail.com>
Mon, 25 Jan 2010 07:30:46 +0000 (08:30 +0100)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 25 Jan 2010 07:30:46 +0000 (08:30 +0100)
bacula/src/cats/dbi.c

index 7a039ba2551fa59839dbc50b9e57daba7175cb04..16e7546bd48910205d3d8f0e96857c158fbf3fb6 100644 (file)
@@ -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 */