]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix typo in table name
authorKern Sibbald <kern@sibbald.com>
Fri, 15 Jan 2016 10:57:24 +0000 (11:57 +0100)
committerKern Sibbald <kern@sibbald.com>
Fri, 15 Jan 2016 10:57:24 +0000 (11:57 +0100)
bacula/src/cats/sql_list.c
bacula/src/version.h

index 309e0db6b5709ec4c48d4ba8274c3a929b18a892..55b6a85a5f9d56d943cd435cfdaa0e1107745aaa 100644 (file)
@@ -579,17 +579,19 @@ void BDB::bdb_list_base_files_for_job(JCR *jcr, JobId_t jobid, DB_LIST_HANDLER *
     * Stupid MySQL is NON-STANDARD !
     */
    if (bdb_get_type_index() == SQL_TYPE_MYSQL) {
-      Mmsg(cmd, "SELECT CONCAT(Path.Path,File.Filename) AS Filename "
-           "FROM BaseFiles, File, Path "
+      Mmsg(cmd, "SELECT CONCAT(Path.Path,Filename.Name) AS Filename "
+           "FROM BaseFiles, File, Filename, Path "
            "WHERE BaseFiles.JobId=%s AND BaseFiles.BaseJobId = File.JobId "
            "AND BaseFiles.FileId = File.FileId "
+           "AND Filename.FilenameId=File.FilenameId "
            "AND Path.PathId=File.PathId",
          edit_int64(jobid, ed1));
    } else {
-      Mmsg(cmd, "SELECT Path.Path||File.Filename AS Filename "
-           "FROM BaseFiles, File, Path "
+      Mmsg(cmd, "SELECT Path.Path||Filename.Name AS Filename "
+           "FROM BaseFiles, File, Filename, Path "
            "WHERE BaseFiles.JobId=%s AND BaseFiles.BaseJobId = File.JobId "
            "AND BaseFiles.FileId = File.FileId "
+           "AND Filename.FilenameId=File.FilenameId "
            "AND Path.PathId=File.PathId",
            edit_int64(jobid, ed1));
    }
index ea6b7a4aed2d14eea3abfc4e7dc7ab8cac565b74..a39e638d87de07d82314db9ce0f0630dc6019333 100644 (file)
@@ -6,8 +6,8 @@
 
 /* Note: there can be only *one* VERSION in this file */
 #define VERSION "7.4.0"
-#define BDATE   "14 January 2016"
-#define LSMDATE "14Jan16"
+#define BDATE   "15 January 2016"
+#define LSMDATE "15Jan16"
 
 #define RELEASE 1   /* Use ONLY in rpms */