I managed to break the Jenkins build :( This happened when I was fixing a bug where triggers cannot be associated with views, as reported by Madhura on the list. Well, I just added in some calls to PMA_table::isView() to fix the issue, but the PMA_table class calls PMA_DBI_get_tables_full() which is not defined in unit tests. I'm not sure how I can fix this. Any ideas? Thanks.
Rouslan
On Tue, 2011-08-09 at 17:28 +0100, Rouslan Placella wrote:
I managed to break the Jenkins build :( This happened when I was fixing a bug where triggers cannot be associated with views, as reported by Madhura on the list. Well, I just added in some calls to PMA_table::isView() to fix the issue, but the PMA_table class calls PMA_DBI_get_tables_full() which is not defined in unit tests. I'm not sure how I can fix this. Any ideas? Thanks.
Well, I fixed the issue by querying information_schema directly instead of using PMA_DBI_get_tables() which also returns views. The build seems to be ok now.
Rouslan