DROP PARSER
Drops a User Defined Load Parser function from the Vertica catalog.
Syntax
DROP PARSER[schema.]parser-name()
Parameters
schema |
Specifies a schema. If multiple schemas are defined in the database, include the schema name. For example: myschema.thisDbObject |
parser‑name()
|
Specifies the parser function to drop. You must append empty parentheses to the function name. |
Privileges
Only the superuser or owner can drop the parser function.
Example
The following command drops the BasicIntegerParser parser function:
=> DROP PARSER BasicIntegerParser(); DROP PARSER