boyjoy1127 opened a new issue, #22442:
URL: https://github.com/apache/shardingsphere/issues/22442
## Question
Two cases in
`shardingsphere/test/integration-test/test-suite/src/test/resources/cases/dql/dql-integration-test-cases.xml`
are not be execute during IT tests.
```
<test-case sql="SELECT * FROM t_order o LEFT JOIN t_merchant m ON
o.merchant_id = m.merchant_id WHERE o.user_id = ? ORDER BY o.order_id, 7"
db-types="MySQL,PostgreSQL,openGauss" scenario-types="db">
<assertion parameters="10:int"
expected-data-source-name="read_dataset" />
</test-case>
<test-case sql="SELECT * FROM t_order o RIGHT JOIN t_merchant m ON
o.order_id = m.merchant_id WHERE m.country_id = 1 ORDER BY m.merchant_id, 7"
db-types="MySQL,PostgreSQL,openGauss" scenario-types="db">
<assertion expected-data-source-name="read_dataset" />
</test-case>
```
Below is the content of it-env.properties:
```
it.run.modes=Standalone,Cluster
it.run.modes=Standalone
it.run.additional.cases=false
#it.scenarios=db,tbl,readwrite_splitting,encrypt,shadow,dbtbl_with_readwrite_splitting,dbtbl_with_readwrite_splitting_and_encrypt,rdl_empty_rules,empty_rules,sharding_and_encrypt,encrypt_and_readwrite_splitting,encrypt_shadow,readwrite_splitting_and_shadow,sharding_and_shadow,sharding_encrypt_shadow
it.scenarios=db
# it.cluster.env.type=DOCKER,NATIVE
it.cluster.env.type=NATIVE
# it.cluster.adapters=jdbc,proxy
it.cluster.adapters=proxy
# it.cluster.databases=MySQL,PostgreSQL,openGauss
it.cluster.databases=MySQL
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail:
[email protected]
For queries about this service, please contact Infrastructure at:
[email protected]