1793baa994b25678b511ccfcdc1410cedf1a7d8d
braney
  Tue Jun 30 16:14:13 2020 -0700
Revert "if trackDb has specific a "table" line, use that and don't look for a"

This reverts commit 10013c858ac5cffd9b27ce28f401b96ac4031863.

diff --git src/hg/hgTables/bigBed.c src/hg/hgTables/bigBed.c
index 92f86fe..f6b1419 100644
--- src/hg/hgTables/bigBed.c
+++ src/hg/hgTables/bigBed.c
@@ -20,35 +20,30 @@
 #include "correlate.h"
 #include "asParse.h"
 #include "bbiFile.h"
 #include "bigBed.h"
 #include "hubConnect.h"
 #include "asFilter.h"
 #include "hgTables.h"
 #include "trackHub.h"
 
 
 boolean isBigBed(char *database, char *table, struct trackDb *parent,
 	struct customTrack *(*ctLookupName)(char *table))
 /* Local test to see if something is big bed.  Handles hub tracks unlike hIsBigBed. */
 {
 struct trackDb *tdb = hashFindVal(fullTableToTdbHash, table);
-
-// if table was specified, we use that instead of the bigDataUrl
-if (tdb && tdb->table)
-    return FALSE;
-
 if (tdb)
     return tdbIsBigBed(tdb);
 else
     return hIsBigBed(database, table, parent, ctLookupName);
 }
 
 static struct hash *asColumnHash(struct asObject *as)
 /* Return a hash full of the object's columns, keyed by colum name */
 {
 struct hash *hash = hashNew(6);
 struct asColumn *col;
 for (col = as->columnList; col != NULL; col = col->next)
     hashAdd(hash, col->name, col);
 return hash;
 }