128129130131132133134
} } @Override public boolean delete(K key) { throw new OperationNotSupportedException("delete is not supported for AvroStore"); }
133134135136137138139
throw new OperationNotSupportedException("delete is not supported for AvroStore"); } @Override public long deleteByQuery(Query<K, T> query) { throw new OperationNotSupportedException("delete is not supported for AvroStore"); }
152153154155156157158
* Executes a PartitialQuery, reading the data between start and end. */ @Override protected Result<K,T> executePartial(FileSplitPartitionQuery<K,T> query) throws IOException { throw new OperationNotSupportedException("Not yet implemented"); }
169170171172173174175
} } @Override public T get(K key, String[] fields) { throw new OperationNotSupportedException(); }
4950515253545556
private DataFileWriter<T> writer; @Override public T get(K key, String[] fields) { throw new OperationNotSupportedException( "Avro DataFile's does not support indexed retrieval"); };
8081828384858687
@Override /** * Deletes schema from the data store */ public void deleteSchema() { throw new OperationNotSupportedException("delete schema is not supported for " + "file backed data stores"); }
118119120121122123124
decoder = null; } @Override public boolean delete(K key) throws IOException { throw new OperationNotSupportedException("delete is not supported for AvroStore"); }
123124125126127128129
throw new OperationNotSupportedException("delete is not supported for AvroStore"); } @Override public long deleteByQuery(Query<K, T> query) throws IOException { throw new OperationNotSupportedException("delete is not supported for AvroStore"); }
142143144145146147148
154155156157158159160
encoder.flush(); } @Override public T get(K key, String[] fields) throws IOException { throw new OperationNotSupportedException(); }