Github user iyerr3 commented on the issue:
https://github.com/apache/madlib/pull/325
I'm getting confused here, so maybe an example would help.
My understanding of @orhankislal 's comment was that say `page_rank` and
`bfs` both use the same table called "vertex" then we will have to drop this
table at the beginning of each of the test files. This may then collide with a
user-created "vertex" table - hence this commit.
My suggestions to solve the problem:
- Use a function-specific name (`"pagerank_vertex"`) instead of a generic
name with (`"vertex"`) no drop by in the beginning.
- Create a single `"vertex"` table (with no drop by statement) and use that
for all graph functions
- Schema-qualify the data table with the install-check schema name.
Please note I'm not suggesting pooling **all** install-check data into a
single file (at least not as a solution to this problem).
---