66d46df506cdb2bcae62d8fbcfdfd4f97bc1a0c5 chmalee Tue Oct 20 11:59:10 2020 -0700 Stop tdbQuery from complaining about valid filterValuesDefault trackDb setting diff --git src/hg/utils/tdbQuery/tdbQuery.c src/hg/utils/tdbQuery/tdbQuery.c index 6a55613..8ec0307 100644 --- src/hg/utils/tdbQuery/tdbQuery.c +++ src/hg/utils/tdbQuery/tdbQuery.c @@ -876,31 +876,31 @@ "Parent at line %d, child at line %d.", closestParent->key, parent->key, child->key, childFp->fileName, parentFp->startLineIx, childFp->startLineIx); } } } } static boolean isComplex(char *name) /* Check to see if this is one of the filter variables that have arbitrary initial strings. */ { if (startsWith("yLabel.", name)) return TRUE; if (startsWith("filter.", name)) return TRUE; -if (startsWith("filterValues.", name)) +if (startsWith("filterValues", name)) return TRUE; if (startsWith("filterType.", name)) return TRUE; if (startsWith("filterLimits.", name)) return TRUE; if (startsWith("filterLabel.", name)) return TRUE; if (startsWith("filterByRange.", name)) return TRUE; if (startsWith("filterText.", name)) return TRUE; if (endsWith(name, "Filter")) return TRUE; if (endsWith(name, "FilterValues")) return TRUE;