test: add test case about ROW as function

This commit is contained in:
hayden 2023-08-28 12:49:09 +08:00
parent 82d097b034
commit 53559bc315

View File

@ -42,6 +42,13 @@ SELECT `user`,
country
FROM page_view_source;
--- Insert with function
INSERT INTO hbase_table
SELECT
st.id as rowKey,
ROW(id, name, age) as baseInfo
FROM sourceTable st;