Skip to content

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

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

Activity

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

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions