Skip to content
New issue

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

failed to insert into an external table on a shared-data cluster #52690

Open
wxl24life opened this issue Nov 7, 2024 · 0 comments · May be fixed by #52689
Open

failed to insert into an external table on a shared-data cluster #52690

wxl24life opened this issue Nov 7, 2024 · 0 comments · May be fixed by #52689
Labels
type/bug Something isn't working

Comments

@wxl24life
Copy link
Contributor

Steps to reproduce the behavior (Required)

-- 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"
);

Expected behavior (Required)

insert succeed

Real behavior (Required)

NullpointerException throwed in fe's log

StarRocks version (Required)

  • 3.3.2
@wxl24life wxl24life added the type/bug Something isn't working label Nov 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type/bug Something isn't working
Projects
None yet
1 participant