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

chore: Adjust test md files #1857

Merged
merged 2 commits into from
Sep 18, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions docs/ORACLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@
* `insert` with `select` with `limit` not supported (`DMLTests.testInsertSelect01`)

### Running tests locally with Gradle
* Run `oracleTest` gradle task

* Run `testOracle` gradle task

### Running tests locally with Docker
* Run Oracle locally, e.g. with `quillbuilduser/oracle-18-xe` Docker image or use `docker-compose -f docker-compose-oracle.yml up`
* Run tests with `-Dexposed.test.dialects=oracle`,
(optionally you may need to provide `-Dexposed.test.oracle.host=_YOUR_DOCKER_HOST_ -exposed.test.oracle.port=_SQLSERVER_SERVER_EXPOSED_PORT_`)

* Run Oracle locally, e.g. with `gvenzl/oracle-xe:18-slim-faststart` Docker image or use `docker-compose -f docker-compose-oracle.yml up`
joc-a marked this conversation as resolved.
Show resolved Hide resolved
* Run tests with `-Dexposed.test.dialects=oracle`,
(optionally you may need to provide `-Dexposed.test.oracle.host=_YOUR_DOCKER_HOST_ -exposed.test.oracle.port=_ORACLE_EXPOSED_PORT_`)
15 changes: 8 additions & 7 deletions docs/SQLServer.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
## SQL Server dialect
## SQL Server dialect

### Running tests locally with Gradle
* Run `sqlServerTest` gradle task

* Run `testSqlserver` gradle task

### Running tests locally with Docker
* Run SQL Server locally, e.g. with Docker image with command like
`docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=yourStrong(!)Password' -p 1433:1433 -d microsoft/mssql-server-linux`
or use `docker-compose -f docker-compose-sqlserver.yml up`

* Run tests with `-Dexposed.test.dialects=sqlserver`,
(optionally you may need to provide `-Dexposed.test.sqlserver.host=_YOUR_DOCKER_HOST_ -exposed.test.sqlserver.port=_SQLSERVER_SERVER_EXPOSED_PORT_`)
* Run SQL Server locally, e.g. with Docker image with command like
`docker run -e 'ACCEPT_EULA=1' -e 'SA_PASSWORD=Exposed_password_1!' -p 3005:1433 -d mcr.microsoft.com/azure-sql-edge:1.0.7`
or use `docker-compose -f docker-compose-sqlserver.yml up`

* Run tests with `-Dexposed.test.dialects=sqlserver`,
(optionally you may need to provide `-Dexposed.test.sqlserver.host=_YOUR_DOCKER_HOST_ -exposed.test.sqlserver.port=_SQLSERVER_EXPOSED_PORT_`)
Loading