We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mysql> desc test_enum; +-------+-------------------+------+------+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-------+-------------------+------+------+---------+-------+ | id | int(11) | YES | | NULL | | | value | enum('a','b','c') | YES | | NULL | | +-------+-------------------+------+------+---------+-------+ 2 rows in set (0.00 sec) mysql> select * from test_enum; +------+-------+ | id | value | +------+-------+ | 1 | a | | 2 | b | +------+-------+ 2 rows in set (0.01 sec) mysql> select * from test_enum a join test_enum b on a.id = b.id; ERROR 1105 (HY000): DB::Exception: DataTypeEnum enumeration cannot be empty
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The text was updated successfully, but these errors were encountered: