Skip to content

Commit

Permalink
Fix #11282: Oracle error ORA-00918 column ambiguously defined
Browse files Browse the repository at this point in the history
Filter API does a SELECT DISTINCT $t_bug_table.*; before this patch the fields
list also included 2 additional columns; MySQL had no problem with that, but
Oracle gave the above-mentioned error.
  • Loading branch information
dregad committed Jul 26, 2011
1 parent 80231d2 commit 0b3b459
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions core/filter_api.php
Expand Up @@ -1107,8 +1107,6 @@ function filter_get_bug_rows( &$p_page_number, &$p_per_page, &$p_page_count, &$p
);
$t_select_clauses = array(
"$t_bug_table.*",
"$t_bug_table.last_updated",
"$t_bug_table.date_submitted",
);

$t_join_clauses = array();
Expand Down

0 comments on commit 0b3b459

Please sign in to comment.