]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/cats/make_bacula_tables.in
remove GROUP BY on db_get_job_volume_names. REVIEW.
[bacula/bacula] / bacula / src / cats / make_bacula_tables.in
index 0195bb00ba424b44d2af05a7e4cb256e1608717d..a40d886cf9f664582611e45bbee883511c8b9cb3 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 #
 # This routine makes the appropriately configured
-#  Bacula tables for either MySQL or SQLite
+#  Bacula tables for PostgreSQL, MySQL, or SQLite.
 #
 if test xsqlite = x@DB_NAME@ ; then
   echo "Making SQLite tables"
@@ -12,6 +12,7 @@ else
     . ./make_mysql_tables
   else
     echo "Making PostgreSQL tables"
-    . ./make_postgresql_tables
+    # hard coded database name
+    . ./make_postgresql_tables bacula
   fi
 fi