Feat: Integrating DQE Testing Approaches into SQLancer first in MySQL#1251
Feat: Integrating DQE Testing Approaches into SQLancer first in MySQL#1251mrigger merged 5 commits into
Conversation
|
Thanks, that's great! Some high-level comments first:
|
Sorry, something went wrong.
Regarding the
Given these differences, merging them into a single class could lead to confusion, increased coupling, and reduced clarity in terms of responsibility separation. I believe keeping them separate helps maintain a clean architecture and supports better extensibility in the future. That said, if you have any alternative suggestions or design ideas on how we can better organize this part of the code, I’d be more than happy to discuss them further. Thanks again for your thoughtful feedback! @mrigger @JensonSung |
Sorry, something went wrong.
|
I think current implementation is good but specialized for DQE method. |
Sorry, something went wrong.
First, revising ExepctedErrors like SQLQueryError to provide a structured information may help ease to identify errors compared to a string-formed information. While DQE does not distinguish which error is expected but compare whether errors are consistent. A clear name could be required. |
Sorry, something went wrong.
Okay, then let's leave them separate for now. I guess there is a conceptual commonality (both are about errors returned by the database system), but if that does not (yet) make sense at an implementation level, we could try to address this later. |
Sorry, something went wrong.
mrigger
left a comment
There was a problem hiding this comment.
This looks close to being merge ready. Could you have another look at my comments? @JensonSung, perhaps you could also do another review then?
Sorry, something went wrong.
|
Sorry for possible confusing. @sayJason is my another account. I try to use the same one. Any problem, @JensonSung |
Sorry, something went wrong.
mrigger
left a comment
There was a problem hiding this comment.
Just did another quick and noticed some final small requests. Could you please have a last look at them before we merge the PR? Other than that, @JensonSung, do the changes look good to you?
Excited to finally have DQE supported in SQLancer! Thanks a lot, @luliqwerty!
Sorry, something went wrong.
- DQEBase: remove unnecessary method - MySQLDQEOracle: simplify adding expectedErrors - MySQLErrors: add a expectedErrors
|
Agreed, lgtm, thanks a lot! |
Sorry, something went wrong.
061a337
into
sqlancer:main
Aug 11, 2025
|
I just noticed that when executing the tests, there seems to be an issue: Could you check whether you can reproduce this locally? This subsequently also results in a crash. |
Sorry, something went wrong.
This is an unexpected error, as the CI for the merge commit passed. The error indicates that the code is attempting to execute an SQL operation on a database connection that has already been closed. However, it seems that DQE did not perform this action. @mrigger @JensonSung |
Sorry, something went wrong.
It seems to be a crash bug. I run DQE locally in SQLancer, which executes without such errors. |
Sorry, something went wrong.
|
Could it be that the local version of MySQL and the one in the CI are different? If they are the same, perhaps it could be helpful to run for DQE a bit longer. It could be that it triggered a crash bug, as pointed out by @JensonSung. |
Sorry, something went wrong.
|
Btw, it would also be great to add DQE as part of the documentation of SQLancer in the table of the main |
Sorry, something went wrong.
Sorry for the late message. The local MySQL has a different version. I try a bit longer time to run DQE, which runs well and does not report errors. |
Sorry, something went wrong.
This PR is to Integrating DQE (Differential Query Execution) Testing Approaches into SQLancer. More information see DQE paper.
Take MySQL as the first step.
The code is divided into three main parts:
DQEBase.class: defines the core logic of DQE, including the addition and deletion of auxiliary columns, and the comparison of query results.SQLQueryError.java: provide standardized error representation and comparison functionality for SQL query operations in DQE.MySQLDQEOracle.class: Inherits fromDQEBaseand implements the specific logic of executing DQE in MySQL, including generating queries, executing queries, comparing results, etc.