morningman commented on a change in pull request #1173: load data from Parquet
file (Issues #911)
URL: https://github.com/apache/incubator-doris/pull/1173#discussion_r290331208
##########
File path: be/src/runtime/stream_load/stream_load_pipe.h
##########
@@ -107,11 +111,31 @@ class StreamLoadPipe : public MessageBodySink, public
FileReader {
return Status::OK;
}
+ Status readat(int64_t position, int64_t nbytes, int64_t* bytes_read, void*
out) {
+ return Status("Not implementation");
+ }
+
+ int64_t size () override {
+ return 0;
+ }
+
+ Status seek(int64_t position) override {
+ return Status("Not implementation");
Review comment:
```suggestion
return Status("Not implemented");
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]