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

Analyzer Error: failed to replan join: field "id" is not on schema #6089

Closed
timsehn opened this issue Jun 2, 2023 · 2 comments
Closed

Analyzer Error: failed to replan join: field "id" is not on schema #6089

timsehn opened this issue Jun 2, 2023 · 2 comments
Labels
analyzer bug Something isn't working good repro Easily reproducible bugs known workaround sql Issue with SQL

Comments

@timsehn
Copy link
Contributor

timsehn commented Jun 2, 2023

Schema:

CREATE TABLE instances (
  id int NOT NULL AUTO_INCREMENT,
  extra json NOT NULL,
  PRIMARY KEY (id)
);

CREATE TABLE queries (
  id int NOT NULL AUTO_INCREMENT,
  `sql` text NOT NULL,
  intance_id int,
  data json NOT NULL,
  PRIMARY KEY (id),
  KEY intance_id (intance_id),
  CONSTRAINT f3f96uhj FOREIGN KEY (intance_id) REFERENCES instances (id)
);

CREATE TABLE query_tags (
  id int NOT NULL AUTO_INCREMENT,
  query_id int,
  tag varchar(255) NOT NULL,
  PRIMARY KEY (id),
  KEY query_id (query_id),
  CONSTRAINT alqhvkd2 FOREIGN KEY (query_id) REFERENCES queries (id)
);

Query:

$ dolt sql -q "SELECT instances.id, instances.extra 
FROM instances 
WHERE EXISTS (
SELECT 1 FROM queries WHERE instances.id = queries.intance_id AND (EXISTS (
SELECT 1 FROM query_tags WHERE queries.id = query_tags.query_id AND query_tags.tag = 'gpt-4-suggestion')))"
error on line 1 for query SELECT instances.id, instances.extra FROM instances WHERE EXISTS (SELECT 1 FROM queries WHERE instances.id = queries.intance_id AND (EXISTS (SELECT 1 FROM query_tags WHERE queries.id = query_tags.query_id AND query_tags.tag = 'gpt-4-suggestion'))): failed to replan join: field "id" is not on schema
failed to replan join: field "id" is not on schema
@timsehn timsehn added bug Something isn't working sql Issue with SQL analyzer good repro Easily reproducible bugs labels Jun 2, 2023
@timsehn timsehn changed the title Analyzer Error: failed to replan join: field "id" is not on schema` Analyzer Error: failed to replan join: field "id" is not on schema Jun 2, 2023
@timsehn
Copy link
Contributor Author

timsehn commented Jun 2, 2023

This is a workaround:

select instances.id, instances.extra
from instances, (
    select DISTINCT intance_id from queries, query_tags
    where queries.id = query_tags.query_id AND query_tags.tag = 'gpt-4-suggestion'
) sq
where instances.id = sq.intance_id;

@timsehn
Copy link
Contributor Author

timsehn commented Jun 6, 2023

This is fixed in 1.2.5.

@timsehn timsehn closed this as completed Jun 6, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
analyzer bug Something isn't working good repro Easily reproducible bugs known workaround sql Issue with SQL
Projects
None yet
Development

No branches or pull requests

1 participant