]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl Fix SQL query in migration code
authorEric Bollengier <eric@eb.homelinux.org>
Mon, 28 Apr 2008 18:13:47 +0000 (18:13 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 28 Apr 2008 18:13:47 +0000 (18:13 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@6851 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/dird/migrate.c
bacula/technotes-2.3

index c9618d5df0aa672d5700a44f7116be1a21877c21..27b201af518c4c8967333fedf239ab4a5784ee0c 100644 (file)
@@ -542,7 +542,7 @@ const char *sql_oldest_vol =
 /* Get JobIds when we have selected MediaId */
 const char *sql_jobids_from_mediaid =
    "SELECT DISTINCT Job.JobId,Job.StartTime FROM JobMedia,Job"
-   " WHERE JobMedia.JobId=Job.JobId AND JobMedia.MediaId=%s"
+   " WHERE JobMedia.JobId=Job.JobId AND JobMedia.MediaId IN (%s)"
    " AND Job.Type='B'"
    " ORDER by Job.StartTime";
 
index f9f5b52f4f8e69182573ef5dc75025ec16c5f08b..24152de4c0c0f59f81cd70796c1730bc19cf7e79 100644 (file)
@@ -25,6 +25,7 @@ Add long term statistics job table
 
 General:
 28Apr08
+ebl  Fix SQL query in migration code.
 ebl  Make accurate mode with hash disk pass regression tests
 27Apr08
 ebl  Implement first cut of accurate backup with hash disk.