Skip to content
Snippets Groups Projects
Commit 6d371035 authored by Stanley Feng's avatar Stanley Feng
Browse files

[googledatastore] Add note that scan is not implemented yet

Will implement scan separately in the next pull request.
parent 58f1ecb4
No related branches found
No related tags found
No related merge requests found
......@@ -234,7 +234,8 @@ public class GoogleDatastoreClient extends DB {
@Override
public Status scan(String table, String startkey, int recordcount,
Set<String> fields, Vector<HashMap<String, ByteIterator>> result) {
return Status.OK;
// TODO: Implement Scan as query on primary key.
return Status.NOT_IMPLEMENTED;
}
@Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment