Skip to content

[Enhancement] java mysql jdbc cannot obtain the primary key information of the table #31206

Description

@waywtdcc

Search before asking

  • I had searched in the issues and found no similar issues.

Description

CREATE TABLE IF NOT EXISTS cc_test.example_tbl_unique2
(
user_id LARGEINT NOT NULL COMMENT "用户id",
username VARCHAR(50) NOT NULL COMMENT "用户昵称",
city VARCHAR(20) COMMENT "用户所在城市"
)
UNIQUE KEY(user_id)
DISTRIBUTED BY HASH(user_id) BUCKETS 1
PROPERTIES (
"replication_allocation" = "tag.location.default: 1"
);

DatabaseMetaData metaData = dbConn.getMetaData();
ResultSet rs = metaData.getPrimaryKeys(“cc_test”, null, "example_tbl_unique2");

result is empty.

image

Solution

No response

Are you willing to submit PR?

  • Yes I am willing to submit a PR!

Code of Conduct

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions