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
Describe the bug Create table like
CREATE TABLE d ( k1 int(11) NULL COMMENT "", k2 int(11) NULL COMMENT "" ) ENGINE=OLAP AGGREGATE KEY(k1, k2) DISTRIBUTED BY HASH(k1) BUCKETS 5 PROPERTIES ( "storage_type" = "COLUMN" );
d
k1
k2
When I insert data failed.
mysql> insert into d (k1) values (1); ERROR 5002 (HY000): 'k2' must be explicitly mentioned in column permutation
It is expected that this insert will be succeeded, and the value of k2 is null.
The text was updated successfully, but these errors were encountered:
#1556
Sorry, something went wrong.
[enhancement](smooth-upgrade) Add upgrading regression test (apache#1555
17f6a2f
)
EmmyMiao87
No branches or pull requests
Describe the bug
Create table like
CREATE TABLE
d
(k1
int(11) NULL COMMENT "",k2
int(11) NULL COMMENT "") ENGINE=OLAP
AGGREGATE KEY(
k1
,k2
)DISTRIBUTED BY HASH(
k1
) BUCKETS 5PROPERTIES (
"storage_type" = "COLUMN"
);
When I insert data failed.
mysql> insert into d (k1) values (1);
ERROR 5002 (HY000): 'k2' must be explicitly mentioned in column permutation
It is expected that this insert will be succeeded, and the value of k2 is null.
The text was updated successfully, but these errors were encountered: