Class: Dataflow::Nodes::RuntimeQueryNode
- Inherits:
-
ReadOnlyDataNode
- Object
- DataNode
- ReadOnlyDataNode
- Dataflow::Nodes::RuntimeQueryNode
- Defined in:
- lib/dataflow/nodes/runtime_query_node.rb
Constant Summary
Constants included from SchemaMixin
SchemaMixin::SAMPLE_DATA_OUTPUT, SchemaMixin::SEPARATOR
Instance Method Summary collapse
- #all(*_args) ⇒ Object
- #all_paginated(*_args) ⇒ Object
- #count(*_args) ⇒ Object
- #find(*_args) ⇒ Object
Methods inherited from ReadOnlyDataNode
#add, #clear, #create_non_unique_indexes, #create_unique_indexes, #drop_dataset!, #dump_dataset, #handle_dataset_settings_changed, #import, #read_dataset_name, #read_dataset_name=, #recreate_dataset, #restore_dataset, #set_defaults, #swap_read_write_datasets!
Methods inherited from DataNode
#add, #clear, #create_non_unique_indexes, #create_unique_indexes, #db_indexes, #drop_dataset!, #dump_dataset, #explain_update, #export, #handle_dataset_settings_changed, #import, #info, #ordered_system_id_queries, #read_dataset_name, #read_dataset_name=, #recreate_dataset, #required_by, #restore_dataset, #safely_clear_write_dataset, #set_defaults, #swap_read_write_datasets!, #update_schema, #updated?, #use_symbols?, #write_dataset_name
Methods included from SchemaMixin
#infer_partial_schema, #infer_schema, #sample_data, #schema_inferrer
Methods included from Dataflow::Node
#all_dependencies, find, #metadata, #recompute, #required_by, #valid_for_computation?, #validate!
Instance Method Details
#all(*_args) ⇒ Object
13 14 15 |
# File 'lib/dataflow/nodes/runtime_query_node.rb', line 13 def all(*_args) raise NotImplementedError, 'this node does not support #all' end |
#all_paginated(*_args) ⇒ Object
25 26 27 |
# File 'lib/dataflow/nodes/runtime_query_node.rb', line 25 def all_paginated(*_args) raise NotImplementedError, 'this node does not support #all_paginated' end |
#count(*_args) ⇒ Object
17 18 19 |
# File 'lib/dataflow/nodes/runtime_query_node.rb', line 17 def count(*_args) raise NotImplementedError, 'this node does not support #count' end |
#find(*_args) ⇒ Object
21 22 23 |
# File 'lib/dataflow/nodes/runtime_query_node.rb', line 21 def find(*_args) raise NotImplementedError, 'this node does not support #find' end |