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

Fix parser span over SQL adapter #8399

Merged
merged 7 commits into from
Mar 3, 2025
Merged

Fix parser span over SQL adapter #8399

merged 7 commits into from
Mar 3, 2025

Conversation

aljazerzen
Copy link
Contributor

@aljazerzen aljazerzen commented Feb 26, 2025

Closes #8390

I suggest reviewing this commit by commit:

  • remove usage of lineno

libpg_query's PgQueryError contains field lineno, which we assumed is the line of the query source where the error occurred. It is not. It is line of the .c file that has produced the parser error. We don't ever want to use this.

  • minor optimization of inflate_span

Just something I noticed.

  • don't emit bogus positions

When we didn't have line and col info, we used to default to 0. Which is worse than nothing, so I removed it.

This also adds code for computing line&col, but I'm not yet calling it, because that requires the original source, which I don't know how to get.

@aljazerzen aljazerzen changed the title fix sql parser span Fix parser span over SQL adapter Feb 26, 2025
@aljazerzen aljazerzen marked this pull request as draft February 26, 2025 12:37
@aljazerzen
Copy link
Contributor Author

aljazerzen commented Feb 26, 2025

@msullivan, would you know how could I get the query source into edb.server.protocol.execute.interpret_error or any of its parents on the call stack?

@msullivan msullivan added the to-backport-6.x PRs that *should* be backported to 6.x label Feb 28, 2025
@aljazerzen aljazerzen marked this pull request as ready for review March 1, 2025 08:35
@msullivan msullivan merged commit 1d7ad3c into master Mar 3, 2025
23 checks passed
@msullivan msullivan deleted the fix-sql-parser-span branch March 3, 2025 21:43
@msullivan msullivan added backported-6.x PRs that *have* been backported to 6.x and removed to-backport-6.x PRs that *should* be backported to 6.x labels Mar 4, 2025
msullivan pushed a commit that referenced this pull request Mar 4, 2025
Closes #8390

- **remove usage of lineno**

libpg_query's `PgQueryError` contains field `lineno`, which we assumed
is the line of the query source where the error occurred. It is not. It
is line of the .c file that has produced the parser error. We don't ever
want to use this.

- **minor optimization of inflate_span**

Just something I noticed.

- **don't emit bogus positions**

When we didn't have line and col info, we used to default to 0. Which is
worse than nothing, so I removed it.

This also adds code for computing line&col, but I'm not yet calling it,
because that requires the original source, which I don't know how to
get.
msullivan added a commit that referenced this pull request Mar 5, 2025
Bug was introduced in by a typo #8399 and hasn't made it out to a
release yet.

It turns out we never test for the end of spans in the server test
suite, so this got caught by the CLI!
msullivan added a commit that referenced this pull request Mar 5, 2025
Bug was introduced in by a typo #8399 and hasn't made it out to a
release yet.

It turns out we never test for the end of spans in the server test
suite, so this got caught by the CLI!
msullivan pushed a commit that referenced this pull request Mar 5, 2025
Closes #8390

- **remove usage of lineno**

libpg_query's `PgQueryError` contains field `lineno`, which we assumed
is the line of the query source where the error occurred. It is not. It
is line of the .c file that has produced the parser error. We don't ever
want to use this.

- **minor optimization of inflate_span**

Just something I noticed.

- **don't emit bogus positions**

When we didn't have line and col info, we used to default to 0. Which is
worse than nothing, so I removed it.

This also adds code for computing line&col, but I'm not yet calling it,
because that requires the original source, which I don't know how to
get.
msullivan added a commit that referenced this pull request Mar 5, 2025
Bug was introduced in by a typo #8399 and hasn't made it out to a
release yet.

It turns out we never test for the end of spans in the server test
suite, so this got caught by the CLI!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backported-6.x PRs that *have* been backported to 6.x
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Invalid SQL query error position line number
2 participants