Lowercase index from EXPLAIN (unless it's PRIMARY) to match lowercase ident names from TableParser::parser().

This commit is contained in:
Daniel Nichter
2012-05-08 16:51:35 -06:00
parent 9bb2311fc2
commit 884d02bc2a
3 changed files with 23 additions and 5 deletions

View File

@@ -39,7 +39,7 @@ if ( !$dbh ) {
plan skip_all => 'Cannot connect to sandbox master';
}
else {
plan tests => 49;
plan tests => 50;
}
my $q = new Quoter();
@@ -849,8 +849,14 @@ eval {
};
is(
$EVAL_ERROR,
undef,
"Bug 995274: case-sensitive chunk index"
'',
"Bug 995274: no error creating nibble iter"
);
is_deeply(
$ni->next(),
['450876', '3','691360'],
"Bug 995274: nibble iter works"
);
# #############################################################################