[HUDI-509] Renaming code in sync with cWiki restructuring (#1212)
- 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
This commit is contained in:
@@ -19,11 +19,11 @@
|
||||
add jar ${hudi.hadoop.bundle};
|
||||
|
||||
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_ro group by symbol HAVING symbol = 'GOOG';
|
||||
select symbol, max(ts) from stock_ticks_mor_rt 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 where symbol = 'GOOG';
|
||||
select symbol, ts, volume, open, close from stock_ticks_mor_ro where symbol = 'GOOG';
|
||||
select symbol, ts, volume, open, close from stock_ticks_mor_rt where symbol = 'GOOG';
|
||||
|
||||
!quit
|
||||
|
||||
Reference in New Issue
Block a user