| Class | Rddb::MaterializationStore::Base |
| In: |
lib/rddb/materialization_store.rb
|
| Parent: | Object |
Delete the materialization of the named view.
# File lib/rddb/materialization_store.rb, line 19
19: def delete(name)
20: raise_abstract_error('delete')
21: end
Return true if the materialization of the named view exists in storage.
# File lib/rddb/materialization_store.rb, line 24
24: def exists?(name)
25: raise_abstract_error('exists?')
26: end
Find the materialization of the view.
# File lib/rddb/materialization_store.rb, line 9
9: def find(name)
10: raise_abstract_error('find')
11: end