conn.execute("DROP INDEX fooidx ON MAPPING fooMapping");
// OR
conn.execute("DROP INDEX fooidx ON TABLE foo");
// Or using the API
conn.dropIndexForMapping("fooidx", "fooMapping");
// or
conn.dropIndexForTable("fooidx", "foo");
// END SNIPPET: drop-index
}