Class: PgCanary::SchemaIntrospection::IndexInfo
- Inherits:
-
Struct
- Object
- Struct
- PgCanary::SchemaIntrospection::IndexInfo
- Defined in:
- lib/pg_canary/schema_introspection.rb
Instance Attribute Summary collapse
-
#columns ⇒ Object
Returns the value of attribute columns.
-
#expressions ⇒ Object
Returns the value of attribute expressions.
-
#name ⇒ Object
Returns the value of attribute name.
-
#opclasses ⇒ Object
Returns the value of attribute opclasses.
-
#using ⇒ Object
Returns the value of attribute using.
Instance Method Summary collapse
Instance Attribute Details
#columns ⇒ Object
Returns the value of attribute columns
9 10 11 |
# File 'lib/pg_canary/schema_introspection.rb', line 9 def columns @columns end |
#expressions ⇒ Object
Returns the value of attribute expressions
9 10 11 |
# File 'lib/pg_canary/schema_introspection.rb', line 9 def expressions @expressions end |
#name ⇒ Object
Returns the value of attribute name
9 10 11 |
# File 'lib/pg_canary/schema_introspection.rb', line 9 def name @name end |
#opclasses ⇒ Object
Returns the value of attribute opclasses
9 10 11 |
# File 'lib/pg_canary/schema_introspection.rb', line 9 def opclasses @opclasses end |
#using ⇒ Object
Returns the value of attribute using
9 10 11 |
# File 'lib/pg_canary/schema_introspection.rb', line 9 def using @using end |
Instance Method Details
#leading_column ⇒ Object
17 18 19 |
# File 'lib/pg_canary/schema_introspection.rb', line 17 def leading_column columns.first end |