Skip to content

Commit

Permalink
api change for join parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
liuneng1994 authored and kyligence-git committed May 17, 2023
1 parent 4416601 commit 92cf676
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Interpreters/TableJoin.h
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,9 @@ class TableJoin
JoinKind kind() const { return table_join.kind; }
JoinStrictness strictness() const { return table_join.strictness; }
bool sameStrictnessAndKind(JoinStrictness, JoinKind) const;
void setKind(JoinKind kind) { table_join.kind = kind; }
void setStrictness(JoinStrictness strictness) { table_join.strictness = strictness; }
void setColumnsFromJoinedTable(NamesAndTypesList columns_from_joined_table_) {columns_from_joined_table = columns_from_joined_table_;}
const SizeLimits & sizeLimits() const { return size_limits; }
VolumePtr getGlobalTemporaryVolume() { return tmp_volume; }

Expand Down

0 comments on commit 92cf676

Please sign in to comment.