- Storage Type replaced with Table Type (remaining instances) - View types replaced with query types; - ReadOptimized view referred as Snapshot Query - TableFileSystemView sub interfaces renamed to BaseFileOnly and Slice Views - HoodieDataFile renamed to HoodieBaseFile - Hive Sync tool will register RO tables for MOR with a `_ro` suffix - Datasource/Deltastreamer options renamed accordingly - Support fallback to old config values as well, so migration is painless - Config for controlling _ro suffix addition - Renaming DataFile to BaseFile across DTOs, HoodieFileSlice and AbstractTableFileSystemView
5 lines
344 B
Plaintext
5 lines
344 B
Plaintext
select symbol, max(ts) from stock_ticks_cow group by symbol HAVING symbol = 'GOOG';
|
|
select symbol, max(ts) from stock_ticks_mor_ro group by symbol HAVING symbol = 'GOOG';
|
|
select symbol, ts, volume, open, close from stock_ticks_cow where symbol = 'GOOG';
|
|
select symbol, ts, volume, open, close from stock_ticks_mor_ro where symbol = 'GOOG';
|