Class: PG::TextDecoder::Identifier

Inherits:
SimpleDecoder show all
Defined in:
ext/pg_text_decoder.c

Overview

This is the decoder class for PostgreSQL identifiers.

Returns an Array of identifiers:

PG::TextDecoder::Identifier.new.decode('schema."table"."column"')
   => ["schema", "table", "column"]

Instance Attribute Summary

Attributes inherited from Coder

#name

Method Summary

Methods inherited from Coder

#==, #decode, #dup, #encode, #format, #format=, #initialize, #inspect, #marshal_dump, #marshal_load, #oid, #oid=, #to_h

Constructor Details

This class inherits a constructor from PG::Coder