]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl Add new SD despooling attributes and Dir inserting attributes
authorEric Bollengier <eric@eb.homelinux.org>
Thu, 25 Oct 2007 15:51:45 +0000 (15:51 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Thu, 25 Oct 2007 15:51:45 +0000 (15:51 +0000)
     job status codes in the catalog (Status table).

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@5803 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/cats/make_mysql_tables.in
bacula/src/cats/make_postgresql_tables.in
bacula/src/cats/make_sqlite3_tables.in
bacula/src/cats/make_sqlite_tables.in
bacula/technotes-2.3

index 513e5da2c472afc95dbf90ed2f9cea1f53ffcc0b..cbe9f61b54a744eb84f88134ae7ff4b71f9aa324 100644 (file)
@@ -325,7 +325,9 @@ INSERT INTO Status (JobStatus,JobStatusLong) VALUES
    ('c', 'Waiting for client resource'),
    ('d', 'Waiting on maximum jobs'),
    ('t', 'Waiting on start time'),
-   ('p', 'Waiting on higher priority jobs');
+   ('p', 'Waiting on higher priority jobs'),
+   ('i', 'Doing batch insert file records'),
+   ('a', 'SD despooling attributes');
 
 CREATE TABLE Version (
    VersionId INTEGER UNSIGNED NOT NULL 
index 70aee44084cb5e2f9fc10a175242d2f74e00bb61..ce6bbdc2855bc84a855f3b57360f3ee91c500580 100644 (file)
@@ -362,7 +362,10 @@ INSERT INTO Status (JobStatus,JobStatusLong) VALUES
    ('t', 'Waiting on start time');
 INSERT INTO Status (JobStatus,JobStatusLong) VALUES
    ('p', 'Waiting on higher priority jobs');
-
+INSERT INTO Status (JobStatus,JobStatusLong) VALUES
+   ('a', 'SD despooling attributes');
+INSERT INTO Status (JobStatus,JobStatusLong) VALUES
+   ('i', 'Doing batch insert file records');
 
 INSERT INTO Version (VersionId) VALUES (10);
 
index 56340855683e15af8fd8dec85b38b56728bb76fb..b284fcb2c37a191b868f9e5491310fc1fc9eaaea 100644 (file)
@@ -347,6 +347,10 @@ INSERT INTO Status (JobStatus,JobStatusLong) VALUES
    ('t', 'Waiting on start time');
 INSERT INTO Status (JobStatus,JobStatusLong) VALUES
    ('p', 'Waiting on higher priority jobs');
+INSERT INTO Status (JobStatus,JobStatusLong) VALUES
+   ('a', 'SD despooling attributes');
+INSERT INTO Status (JobStatus,JobStatusLong) VALUES
+   ('i', 'Doing batch insert file records');
 
 
 -- Initialize Version           
index 813cce2601d114f900803d4aa66ab14b4bcbe433..7fdcbada56c9d5aa50fe43834ebbad9ab257e2ca 100644 (file)
@@ -347,6 +347,10 @@ INSERT INTO Status (JobStatus,JobStatusLong) VALUES
    ('t', 'Waiting on start time');
 INSERT INTO Status (JobStatus,JobStatusLong) VALUES
    ('p', 'Waiting on higher priority jobs');
+INSERT INTO Status (JobStatus,JobStatusLong) VALUES
+   ('a', 'SD despooling attributes');
+INSERT INTO Status (JobStatus,JobStatusLong) VALUES
+   ('i', 'Doing batch insert file records');
 
 
 -- Initialize Version           
index 705b057bcde0c5f74856960121eb3d0fdb4cfd9d..d3b78d4fbddb9f8434a6e610004e3ef89a51de69 100644 (file)
@@ -1,6 +1,9 @@
               Technical notes on version 2.3
 
 General:
+25Oct07
+ebl  Add new SD despooling attributes and Dir inserting attributes 
+     job status codes in the catalog (Status table).
 24Oct07
 ebl  Use qmake-qt4 instead of qmake when available (debian system).
 22Oct07