DROP MAPPING

Syntax

DROP MAPPING mapping_name [IF bool_expr]

Description

Drops named mapping.

Example

        HConnection conn = HConnectionManager.newConnection();

        conn.execute("DROP MAPPING fooMapping");

        // Or using the API
        conn.dropMapping("fooMapping");