Class: PgObjects::ParsedObject::Base
- Inherits:
-
Object
- Object
- PgObjects::ParsedObject::Base
- Defined in:
- lib/pg_objects/parsed_object/base.rb
Overview
Base class for parsed objects
Direct Known Subclasses
Aggregate, Conversion, EventTrigger, Function, MaterializedView, Operator, OperatorClass, Table, TextSearchParser, TextSearchTemplate, Trigger, Type, View
Instance Method Summary collapse
-
#initialize(stmt) ⇒ Base
constructor
A new instance of Base.
- #name ⇒ Object
Constructor Details
#initialize(stmt) ⇒ Base
Returns a new instance of Base.
5 6 7 |
# File 'lib/pg_objects/parsed_object/base.rb', line 5 def initialize(stmt) @stmt = stmt end |
Instance Method Details
#name ⇒ Object
9 10 11 |
# File 'lib/pg_objects/parsed_object/base.rb', line 9 def name raise NotImplementedError end |