Class: Iceberg::TableScan
- Inherits:
-
Object
- Object
- Iceberg::TableScan
- Defined in:
- lib/iceberg/table_scan.rb
Instance Attribute Summary collapse
-
#table ⇒ Object
readonly
Returns the value of attribute table.
Instance Method Summary collapse
-
#initialize(scan, table) ⇒ TableScan
constructor
A new instance of TableScan.
- #plan_files ⇒ Object
- #snapshot ⇒ Object
Constructor Details
#initialize(scan, table) ⇒ TableScan
Returns a new instance of TableScan.
5 6 7 8 |
# File 'lib/iceberg/table_scan.rb', line 5 def initialize(scan, table) @scan = scan @table = table end |
Instance Attribute Details
#table ⇒ Object (readonly)
Returns the value of attribute table.
3 4 5 |
# File 'lib/iceberg/table_scan.rb', line 3 def table @table end |
Instance Method Details
#plan_files ⇒ Object
10 11 12 |
# File 'lib/iceberg/table_scan.rb', line 10 def plan_files @scan.plan_files end |
#snapshot ⇒ Object
14 15 16 |
# File 'lib/iceberg/table_scan.rb', line 14 def snapshot @scan.snapshot end |