You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support result cache for compound SQLs. (INSERT SELECT, COPY FROM, CREATE SELECT)
Provide a API returns query_id <-> sql list in current session, so that user can quickly get the result corresponding to the previous SQL. cc @flaneur2020
The text was updated successfully, but these errors were encountered:
Summary
Query result cache can help us to get query results faster if the data is not changed for the query.
This is a tracking issue for query result cache.
Basic
Related Tables
system.query_cache
. feat(query): Support query result cache system table and table function #10159SELECT * FROM RESULT_SCAN(LAST_QUERY_ID(-2));
feat(query): query cache table function #10256Optional
INSERT SELECT
,COPY FROM
,CREATE SELECT
)query_id <-> sql
list in current session, so that user can quickly get the result corresponding to the previous SQL. cc @flaneur2020The text was updated successfully, but these errors were encountered: