4be6a99af6e42fce241b47631212ec221a9c5d11
jcasper
  Mon Mar 8 11:00:53 2021 -0800
Removing obsolete reference to dbDbArch table, no ticket

diff --git src/utils/qa/trackDbGlobal.csh src/utils/qa/trackDbGlobal.csh
index 9486e84..33cd84a 100755
--- src/utils/qa/trackDbGlobal.csh
+++ src/utils/qa/trackDbGlobal.csh
@@ -85,35 +85,30 @@
 echo "<HTML><HEAD><TITLE>trackDb Diffs $today</TITLE></HEAD><BODY>\n<PRE> \
       \n" >! $summaryFile
 
 echo "db      diffs"
 echo "-------------"
 foreach db ( $dbs )
   set todaysPath="$dirPath/$today"
   set dbSummaryOut="$db.$machine.trackDbAll"
   set dbHtmlOut="$db.$machine.htmlOut"
   set outfile="$todaysPath/$dbSummaryOut"
   set htmlfile="$todaysPath/$dbHtmlOut"
   set active=`hgsql -h $sqlrr -N -e 'SELECT active FROM dbDb \
      WHERE name = "'$db'"' hgcentral`
   if ( 0 == $active ) then
     set comment="staged"
-    set archived=`hgsql -h $sqlrr -N -e 'SELECT active FROM dbDbArch \
-       WHERE name = "'$db'"' hgcentral`
-    if ( 1 == $archived ) then
-      set comment="archived\n"
-    endif
     echo $db $comment | gawk '{printf "%7s %-10s", $1, $2}'
     echo
     echo $db $comment | gawk '{printf "%7s %-10s", $1, $2}' >> $summaryFile
     echo "\n\n\n" >> $summaryFile
     continue
   endif
   compareTrackDbAll.csh $db hgwbeta $machine $mode >& $outfile
   if ( $status ) then
     echo "$db dbDbErr" | gawk '{printf "%7s %3s", $1, $2}'
     echo 
     echo '<A HREF ="'$dbSummaryOut'">'$db'</A> dbDbErr \n\n' \
         >> $summaryFile
   else
     set diffs=`cat $outfile | egrep " Diff|The diff" | wc -l` 
     echo "$db $diffs" | gawk '{printf "%7s %2d", $1, $2}'