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

Extracting update query columns #1800

Closed
abbnaseri opened this issue May 29, 2023 · 6 comments
Closed

Extracting update query columns #1800

abbnaseri opened this issue May 29, 2023 · 6 comments
Labels
customer issue question Further information is requested

Comments

@abbnaseri
Copy link

Could you tell me how i can extract which columns the update query wants to update and what are their values? By the way, huge thanks for your awesome project.

@zachmu
Copy link
Member

zachmu commented May 30, 2023

Hey @abbnaseri, can you provide a little more detail? Are you trying to implement a sql.RowUpdater?

@abbnaseri
Copy link
Author

Hey @zachmu, Thanks for your response. In our project we want to parse the sql queries that we are receiving and extract its components and then use those components to build a request and send it to another service for database updates. there is a legacy service which we are trying to detach it from real database. for example if this is the query we are receiving:

UPDATE users SET email = "[email protected]" WHERE id = 1;

we want to know that this is an 'update' query and it tries to update 'email' column based on id = 1 condition. I read the BACKEND.md but i didn't get which interface i should implement. I'll be grateful if you help me with that.

@timsehn
Copy link
Contributor

timsehn commented May 30, 2023

I think what you really want is the Vitess. This is our fork;

https://github.com/dolthub/vitess

That handles query parsing in go-mysql-server.

@timsehn timsehn added the question Further information is requested label May 30, 2023
@abbnaseri
Copy link
Author

abbnaseri commented May 30, 2023

Yeah I came across this project earlier but i didn't understand how it can solve my problem. What we want is all MySQL functionality with this exception that for queries we need all their components for building the requests and for response we must return valid MySQL responses/errors so that the legacy project doesn't feel it isn't a real MySQL.

@zachmu
Copy link
Member

zachmu commented May 30, 2023

Based on this, you probably don't want to implement a custom backend. You probably want just want the parser capability.

You need to:

  1. Call sqlparser.Parse() to parse the statement from the client
  2. Determine if it's an UpdateStatement
  3. If so, dig into the AST produced by Parse to see if the conditions you want to trigger on obtain to that query
  4. Trigger your alternate business logic if so

Here's an example of walking the AST produced by the Parse function, should get you started:

https://github.com/dolthub/go-mysql-server/blob/main/sql/parse/parse.go#L185

@timsehn
Copy link
Contributor

timsehn commented Jun 21, 2023

Going to cvlose this as I think we answered your question.

@timsehn timsehn closed this as completed Jun 21, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
customer issue question Further information is requested
Projects
None yet
Development

No branches or pull requests

4 participants