DROP PARSER
Drops a User Defined Load Parser function from the Vertica catalog.
	Drops a User Defined Load Parser function from the Vertica catalog.
Syntax
DROP PARSER[[database.]schema.]parser()
Parameters
- [- database- .]- schema
- Database and schema. The default schema is - public. If you specify a database, it must be the current database.
- parser- ()
- The name of the parser function to drop. You must append empty parentheses to the function name.
Privileges
Non-superuser:
- 
Owner or DROP privilege 
- 
USAGE privilege on schema 
Examples
=> DROP PARSER BasicIntegerParser();
DROP PARSER