PT-1554 3rd attempt to fix ExplainAnalyzer.t

This commit is contained in:
Carlos Salguero
2018-05-22 15:25:33 -03:00
parent 9d1c67613b
commit b547b7c21c

View File

@@ -81,10 +81,7 @@ my $got = $exa->explain_query(
$got->[0]->{filtered} = int($got->[0]->{filtered}) if (defined($got->[0]->{filtered})); $got->[0]->{filtered} = int($got->[0]->{filtered}) if (defined($got->[0]->{filtered}));
is_deeply( is_deeply(
$exa->explain_query( $got,
dbh => $dbh,
query => 'select * from actor where actor_id = 5',
),
$want, $want,
'Got a simple EXPLAIN result', 'Got a simple EXPLAIN result',
); );