Skip to content

Commit

Permalink
[KYUUBI #2782][FOLLOWUP] Add missed UNION_TYPE back
Browse files Browse the repository at this point in the history
This pull request fixes #
Fix #6207 (comment)

Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.

- [ ] Bugfix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)

---

- [ ] This patch was not authored or co-authored using [Generative Tooling](https://www.apache.org/legal/generative-tooling.html)

**Be nice. Be informative.**

Closes #6209 from turboFei/fix_union_type.

Closes #2782

622c838 [Wang, Fei] miss

Authored-by: Wang, Fei <[email protected]>
Signed-off-by: Wang, Fei <[email protected]>
(cherry picked from commit ae9e88f)
Signed-off-by: Wang, Fei <[email protected]>
  • Loading branch information
turboFei committed Mar 26, 2024
1 parent eca9bb0 commit 4ae0003
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,8 @@ static String getColumnTypeName(TTypeId type) throws SQLException {
return "struct";
case NULL_TYPE:
return "void";
case UNION_TYPE:
return "uniontype";
default:
throw new KyuubiSQLException("Invalid column type: " + type);
}
Expand Down

0 comments on commit 4ae0003

Please sign in to comment.