lppsuixn opened a new issue #3059:
URL: https://github.com/apache/hudi/issues/3059
Currently, only support COPY_ON_WRITE,when will support MERGE_ON_READ ?
Thanks!
```java
switch (metaClient.getTableType()) {
case COPY_ON_WRITE:
return new HoodieJavaCopyOnWriteTable<>(config, context, metaClient);
case MERGE_ON_READ:
throw new HoodieNotSupportedException("MERGE_ON_READ is not
supported yet");
default:
throw new HoodieException("Unsupported table type :" +
metaClient.getTableType());
}
```
--
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]