This week focused on finishing up documentation, a little bit of cleanup and one final task of implementation that would be helpful. DISTINCT The SELECT DISTINCT clause currently uses a DEDUP(x,ALL), which is notoriously slow for large tasks. Instead an alternative clause was suggested TABLE(x,{<cols>},<cols>,MERGE); //eg. for a t1 table with c1 and c2 TABLE(t1,{t1},c1,c2,MERGE); …
Continue reading "Week 12: Dedup & Documentation (& Examples)"