Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e76a5de
Create SchemaHasherMysql.php
clxmstaab Feb 20, 2022
f282895
Update SchemaHasherMysql.php
clxmstaab Feb 20, 2022
acd1918
generate hash just once
clxmstaab Feb 20, 2022
4ca579b
Update SchemaHasherMysql.php
clxmstaab Feb 20, 2022
0319a44
Update SchemaHasherMysql.php
clxmstaab Feb 20, 2022
07f8396
Update SchemaHasherMysql.php
clxmstaab Feb 20, 2022
cbec315
Update SchemaHasherMysql.php
clxmstaab Feb 20, 2022
243555d
implement ReplayAndRecordingQueryReflector
clxmstaab Feb 20, 2022
d3f889b
fix
clxmstaab Feb 20, 2022
ef75444
fix
clxmstaab Feb 20, 2022
3755a07
regenerate
clxmstaab Feb 20, 2022
913efe3
Update README.md
staabm Feb 20, 2022
f5352cc
Update README.md
staabm Feb 20, 2022
934f1ea
Update phpstan.yml
staabm Feb 20, 2022
f1126f2
Update tests.yml
staabm Feb 20, 2022
2bba824
Update README.md
staabm Feb 20, 2022
4e37274
Update README.md
clxmstaab Feb 20, 2022
2660cc1
Update README.md
clxmstaab Feb 20, 2022
e6945d2
Update README.md
clxmstaab Feb 20, 2022
caecc98
Update README.md
clxmstaab Feb 20, 2022
a6ac745
Update README.md
clxmstaab Feb 20, 2022
dbf349e
Update README.md
clxmstaab Feb 20, 2022
9457d59
introduce cacheIsDirty flag
staabm Feb 21, 2022
d4400f8
SchemaHasherMysql: increase group_concat_max_len
staabm Feb 21, 2022
56d6af6
Update ReflectionCache.php
staabm Feb 21, 2022
b9525f1
Update ReplayAndRecordingQueryReflector.php
staabm Feb 21, 2022
fb9d83d
Create CacheNotPopulatedException.php
staabm Feb 21, 2022
a0882b9
Update ReplayAndRecordingQueryReflector.php
staabm Feb 21, 2022
a5ec1e2
fix
clxmstaab Feb 21, 2022
f0f3001
cs
clxmstaab Feb 21, 2022
298b27a
fix
clxmstaab Feb 21, 2022
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
11 changes: 11 additions & 0 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,29 @@ jobs:
- php-version: "8.0"
db-image: 'mysql:8.0'
reflector: "pdo"
mode: "recording"
- php-version: "8.0"
db-image: 'mysql:8.0'
reflector: "mysqli"
mode: "recording"

- php-version: "8.1"
db-image: 'mysql:8.0'
reflector: "mysqli"
mode: "recording"
- php-version: '8.1'
db-image: 'mariadb:latest'
reflector: "mysqli"
mode: "recording"

- php-version: "8.1"
db-image: 'mysql:8.0'
reflector: "mysqli"
mode: "replay-and-recording"

env:
DBA_REFLECTOR: ${{ matrix.reflector }}
DBA_MODE: ${{ matrix.mode }}

# https://docs.github.com/en/free-pro-team@latest/actions/guides/about-service-containers
services:
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,29 @@ jobs:
- php-version: "8.0"
db-image: 'mysql:8.0'
reflector: "pdo"
mode: "recording"
- php-version: "8.0"
db-image: 'mysql:8.0'
reflector: "mysqli"
mode: "recording"

- php-version: "8.1"
db-image: 'mysql:8.0'
reflector: "mysqli"
mode: "recording"
- php-version: '8.1'
db-image: 'mariadb:latest'
reflector: "mysqli"
mode: "recording"

- php-version: "8.1"
db-image: 'mysql:8.0'
reflector: "pdo"
mode: "replay-and-recording"

env:
DBA_REFLECTOR: ${{ matrix.reflector }}
DBA_MODE: ${{ matrix.mode }}

# https://docs.github.com/en/free-pro-team@latest/actions/guides/about-service-containers
services:
Expand Down
Loading