mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
added creation and check for a multi-column index
This commit is contained in:
parent
ec4bf09604
commit
1a36e05672
@ -62,7 +62,7 @@
|
||||
),
|
||||
'pk' => array('test_auto'),
|
||||
'fk' => array(),
|
||||
'ix' => array('test_varchar',array('test_text','options'=>array('mysql'=>'FULLTEXT','sapdb'=>false,'maxdb'=>false,'pgsql'=>false,'mssql'=>false))),
|
||||
'ix' => array(array('test_char','test_varchar'),'test_varchar',array('test_text','options'=>array('mysql'=>'FULLTEXT','sapdb'=>false,'maxdb'=>false,'pgsql'=>false,'mssql'=>false))),
|
||||
'uc' => array('test_char')
|
||||
),
|
||||
);
|
||||
@ -169,10 +169,10 @@
|
||||
}
|
||||
echo $indexes !== False ? "==> SUCCESS\n" : "==> unchecked\n";
|
||||
|
||||
echo "Droping index from renamed column test_varchar_renamed:\n";
|
||||
$schema_proc->DropIndex('schema_proc_renamed',array('test_varchar_renamed'));
|
||||
echo "Droping index from renamed column (test_char,test_varchar_renamed):\n";
|
||||
$schema_proc->DropIndex('schema_proc_renamed',array('test_char','test_varchar_renamed'));
|
||||
$indexes = $adodb->MetaIndexes('schema_proc_renamed');
|
||||
if ($indexes !== False) check_index('test_varchar_renamed',False,$indexes,False);
|
||||
if ($indexes !== False) check_index(array('test_char','test_varchar_renamed'),False,$indexes,False);
|
||||
echo $indexes !== False ? "==> SUCCESS\n" : "==> unchecked\n";
|
||||
|
||||
//print_r($adodb->MetaColumns('schema_proc_renamed'));
|
||||
|
Loading…
Reference in New Issue
Block a user