Open xmnlab opened 4 years ago
stopped due the sql-hint option that would be available in omniscidb soon.
sql-hint was implemented in v5.3.1 https://docs.omnisci.com/overview/release-notes#5-3-1-july-8-2020 this task is not blocked. just waiting for some documentation about this new feature.
some description about how to use it (from Venkat):
the simple thing here is to just attach the hint like this after the SELECT keyword, if the hint parameter is set
SELECT /*+ cpu_mode */ ... (edited)
so i'd assume the iibis omnisci compiler sees the flag and then can add this. that's all is currently needed. if the Ibis compiler generats a common table expression (CTE) then you'd want to put it after the CTE expression like this
WITH prequery AS (SELECT blah blah blah) SELECT /*+ cpu_mode */ * FROM pre_query;
no progress since my last comment.