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
-- run on target cluster (shared-data) create database test; use test; CREATE TABLE t ( k1 DATE, k2 INT, k3 SMALLINT, k4 VARCHAR(2048), k5 DATETIME ) ENGINE=olap DISTRIBUTED BY HASH(k1); CREATE EXTERNAL TABLE external_t ( k1 DATE, k2 INT, k3 SMALLINT, k4 VARCHAR(2048), k5 DATETIME ) ENGINE=olap DISTRIBUTED BY HASH(k1) PROPERTIES ( "host" = "xxxx", "port" = "9020", "user" = "admin", "password" = "xxx, "database" = "test", "table" = "t" );
insert succeed
NullpointerException throwed in fe's log
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Steps to reproduce the behavior (Required)
Expected behavior (Required)
insert succeed
Real behavior (Required)
NullpointerException throwed in fe's log
StarRocks version (Required)
The text was updated successfully, but these errors were encountered: