What do you mean by "custom join algorithm"? You seem to be mixing "SQL join queries" with "Avatica". Calcite uses planner rules on relational algebra level, you can write a rule that transforms Join RelNode with your algorithm. Is that what you want to do?
ig ________________________________ From: Valeriy Trofimov <[email protected]> Sent: Thursday, May 16, 2019 9:47 PM To: [email protected] Subject: Customizing Join Algorithm Hi All, I want to use a custom join algorithm in Calcite SQL join queries. My questions are: 1. Is it possible to do? 2. If yes, what part of Calcite should I update? I've tried to figure it out myself by debugging Calcite join unit tests, but it looks like Calcite uses Avatica for this. Thanks, Val
