fix(applier): added support for unique text column, they are mapped to uint8[] #1187
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: migration tests | |
| on: [pull_request] | |
| jobs: | |
| docker-tests: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| image: ['mysql/mysql-server:5.7.41','mysql:8.0.41','mysql:8.4.3','percona/percona-server:8.0.41-32'] | |
| env: | |
| TEST_MYSQL_IMAGE: ${{ matrix.image }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup environment | |
| run: script/docker-gh-ost-replica-tests up | |
| - name: Run tests | |
| run: script/docker-gh-ost-replica-tests run | |
| - name: Teardown environment | |
| if: always() | |
| run: script/docker-gh-ost-replica-tests down |