Skip to content

Commit

Permalink
improvement 16635
Browse files Browse the repository at this point in the history
  • Loading branch information
SbloodyS authored and ruanwenjun committed Sep 21, 2024
1 parent 29ac6c1 commit 940f5fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/schema-check/mysql/running-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ docker run -v "./ds_schema_check_test/mysql-connector-java-8.0.16.jar:/opt/dolph
export SPRING_DATASOURCE_DRIVER_CLASS_NAME="com.mysql.cj.jdbc.Driver"; \
export SPRING_DATASOURCE_USERNAME="root"; \
export SPRING_DATASOURCE_PASSWORD="mysql"; \
export SPRING_DATASOURCE_URL="jdbc:mysql://mysql:3306/dolphinscheduler_${DATABASE_VERSION}?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true&useSSL=false"; \
export SPRING_DATASOURCE_URL='jdbc:mysql://mysql:3306/dolphinscheduler_${DATABASE_VERSION}?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true&useSSL=false'; \
bash tools/bin/upgrade-schema.sh'
export SPRING_DATASOURCE_URL="jdbc:mysql://127.0.0.1:3306/dolphinscheduler_${DATABASE_VERSION}?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true&useSSL=false"
bash ds_schema_check_test/dev/tools/bin/upgrade-schema.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schema-check/postgresql/running-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ docker run --network schema-test apache/dolphinscheduler-tools:${DS_VERSION} -c
export SPRING_DATASOURCE_DRIVER_CLASS_NAME="org.postgresql.Driver"; \
export SPRING_DATASOURCE_USERNAME="postgres"; \
export SPRING_DATASOURCE_PASSWORD="postgres"; \
SPRING_DATASOURCE_URL="jdbc:postgresql://postgres:5432/dolphinscheduler_${DATABASE_VERSION}"; \
export SPRING_DATASOURCE_URL='jdbc:postgresql://postgres:5432/dolphinscheduler_${DATABASE_VERSION}'; \
bash tools/bin/upgrade-schema.sh'
export SPRING_DATASOURCE_URL="jdbc:postgresql://127.0.0.1:5432/dolphinscheduler_${DATABASE_VERSION}"
bash ds_schema_check_test/dev/tools/bin/upgrade-schema.sh
Expand Down

0 comments on commit 940f5fd

Please sign in to comment.