$lang['strindextype'] = 'Type of index';
$lang['strtablecolumnlist'] = 'Columns in table';
$lang['strindexcolumnlist'] = 'Columns in index';
+ $lang['strconfcluster'] = 'Are you sure you want to cluster on "%s"?';
$lang['strclusteredgood'] = 'Cluster complete.';
$lang['strclusteredbad'] = 'Cluster failed.';
$lang['strconcurrently'] = 'Concurrently';
$lang['strindextype'] = 'Type of index';
$lang['strtablecolumnlist'] = 'Columns in table';
$lang['strindexcolumnlist'] = 'Columns in index';
+ $lang['strconfcluster'] = 'Are you sure you want to cluster on "%s"?';
$lang['strclusteredgood'] = 'Cluster complete.';
$lang['strclusteredbad'] = 'Cluster failed.';
$lang['strconcurrently'] = 'Concurrently';
$t->assertText("//p[@class='message']", $lang['strindexcreated']);
/** 2 **/
-$t->addComment('2. Drop the index');
+$t->addComment('2. Cluster on the index');
+$t->clickAndWait("link={$lang['strindexes']}");
+$t->clickAndWait("//tr/td[text()='name_unique']/../td/a[text()='Cluster']");
+$t->clickAndWait('cluster');
+$t->assertText("//p[@class='message']", $lang['strclusteredgood'] . ' ' . $lang['stranalyzegood']);
+
+/** 3 **/
+$t->addComment('3. Drop the index');
$t->clickAndWait("link={$lang['strindexes']}");
$t->clickAndWait("//tr/td[text()='name_unique']/../td/a[text()='Drop']");
$t->click('cascade');
$t->logout();
$t->writeTests("{$test_static_dir}/{$server['desc']}/index.html", $testsuite_file);
unset($t);
-?>
\ No newline at end of file
+?>