Skip to content

[Bug]: Mysql、Pgsql、TrinoSql的关联表字段提示有问题 #478

@Cythia828

Description

@Cythia828

Version

v4.5.0

Which SQL?

MySQL

SQL content

create table orders (
    id BIGINT,
    age int,
    name VARCHAR
);
create table t1 (
    id1 BIGINT,
    age1 int,
    name1 VARCHAR
);
SELECT o.age, u.age1
FROM orders o
JOIN t1 u ON o. = u.;

JavaScript/TypeScript code

What happened?

create table orders (
id BIGINT,
age int,
name VARCHAR
);
create table t1 (
id1 BIGINT,
age1 int,
name1 VARCHAR
);
SELECT o.age, u.age1
FROM orders o
JOIN t1 u ON o. = u.;
o.u.后面无法正常提示关联表字段

Relevant log output

Metadata

Metadata

Assignees

Type

No type
No fields configured for issues without a type.

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions