Message ID | 1269246375-8986-1-git-send-email-fyang@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/tko/frontend.py b/tko/frontend.py index 9033c20..0fd61f9 100644 --- a/tko/frontend.py +++ b/tko/frontend.py @@ -85,7 +85,7 @@ def get_matrix_data(db_obj, x_axis, y_axis, where = None, fields = ','.join(query_fields_list) group_by = '%s, %s, status' % (x_field, y_field) - rows = db_obj.select(fields, 'tko_test_view', + rows = db_obj.select(fields, 'tko_test_view_2', where=where, group_by=group_by, max_rows = MAX_RECORDS) return status_data(rows, x_field, y_field, query_reasons)