-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove a few of the unspeakable hacks from the viz code.
Previously, the viz code used a bunch of ad hoc and mostly wrong rules to determine if a table is a builtin table or not: e.g., tables with names starting with "t_" or ending with "_tbl" were ignored in various places. That resulted in ignoring legitimate user-defined tables with those names; it also missed builtin tables that didn't match the pattern. Replace that scheme with something more reasonable: Bud now builds a hash containing the builtin collections and we just consult that hash to see if a collection is a builtin or not.
- Loading branch information
1 parent
6e7fb4e
commit 4a6a634
Showing
5 changed files
with
31 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters