1
0

[HUDI-218] Adding Presto support to Integration Test (#1003)

This commit is contained in:
Sivabalan Narayanan
2019-11-11 06:21:49 -08:00
committed by vinoth chandar
parent 5f1309407a
commit 23b303e4b1
5 changed files with 88 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
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, ts, volume, open, close from stock_ticks_cow where symbol = 'GOOG';
select symbol, ts, volume, open, close from stock_ticks_mor where symbol = 'GOOG';

View File

@@ -0,0 +1,2 @@
select symbol, max(ts) from stock_ticks_mor group by symbol HAVING symbol = 'GOOG';
select symbol, ts, volume, open, close from stock_ticks_mor where symbol = 'GOOG';

View File

@@ -0,0 +1 @@
show tables;