cat > script <<'+-+-+-+-+-END-OF-FILE-+-+-+-+-+'
create index on table IX (a,b);
select tab_name, tab_index from sys_tables where tab_name = "IX";
drop index on table IX (a,b);
select tab_name, tab_index from sys_tables where tab_name = "IX";
+-+-+-+-+-END-OF-FILE-+-+-+-+-+
chmod 755 script
cat > stdout <<'+-+-+-+-+-END-OF-FILE-+-+-+-+-+'
* * tab_name                          tab_index

IX                                2 1 '' 2 15 'a' 'b'
* * tab_name                          tab_index

IX
* 
+-+-+-+-+-END-OF-FILE-+-+-+-+-+
chmod 644 stdout
cat > tag <<'+-+-+-+-+-END-OF-FILE-+-+-+-+-+'
Test to 'create' and 'drop' composite index
+-+-+-+-+-END-OF-FILE-+-+-+-+-+
chmod 644 tag
