Annotation: core.get_field

CREATE OR REPLACE FUNCTION core.get_field(this hstore, _column_name text)
RETURNS text

Information: core.get_field

Schema core
Function Name get_field
Arguments this hstore, _column_name text
Owner postgres
Result Type text
Description

Implementation: core.get_field

CREATE OR REPLACE FUNCTION core.get_field(this hstore, _column_name text)
 RETURNS text
 LANGUAGE plpgsql
AS $function$
   DECLARE _field_value text;
BEGIN
    _field_value := this->_column_name;
    RETURN _field_value;
END
$function$