bhasudha commented on a change in pull request #1003: [HUDI-218] Adding Presto support to Integration Test URL: https://github.com/apache/incubator-hudi/pull/1003#discussion_r344420562
########## File path: docker/demo/presto-batch1.commands ########## @@ -0,0 +1,6 @@ +select symbol, max(ts) from stock_ticks_cow group by symbol HAVING symbol = 'GOOG'; +select symbol, max(ts) from stock_ticks_mor group by symbol HAVING symbol = 'GOOG'; +select symbol, max(ts) from stock_ticks_mor_rt group by symbol HAVING symbol = 'GOOG'; Review comment: @nsivabalan presto does not support mor_rt tables yet. Meaning it can produce unreliable result since currently, it can only read the base parquet file (just supports Read optimized view). Can we remove the presto queries against *mor_rt table to avoid confusion? ---------------------------------------------------------------- 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
