Skip to content

Commit e471dcb

Browse files
authored
Merge branch 'master' into snowflake-adapter
2 parents 45bbe85 + 7c14f4c commit e471dcb

25 files changed

Lines changed: 976 additions & 233 deletions

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
uses: actions/checkout@v2
2020
with:
2121
fetch-depth: 0
22-
- name: Setup dotnet 6.0
22+
- name: Setup dotnet 8.0
2323
uses: actions/setup-dotnet@v1
2424
with:
25-
dotnet-version: '6.0.x'
25+
dotnet-version: '8.0.x'
2626
- name: Start SQL Local DB
2727
run: sqllocaldb start mssqllocaldb
2828
- name: Build and Test

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
uses: actions/checkout@v2
1717
with:
1818
fetch-depth: 0
19-
- name: Setup dotnet 6.0
19+
- name: Setup dotnet 8.0
2020
uses: actions/setup-dotnet@v1
2121
with:
22-
dotnet-version: '6.0.x'
22+
dotnet-version: '8.0.x'
2323
- name: Start SQL Local DB
2424
run: sqllocaldb start mssqllocaldb
2525
- name: Build and Test

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,3 +207,6 @@ tools/roundhouse/output/
207207

208208
# Informix files
209209
informix-server/wl*
210+
211+
# DB2 files
212+
db2-server/*

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var respawner = await Respawner.CreateAsync(connection, new RespawnerOptions
3333
{
3434
"public"
3535
},
36-
DbAdapter = DbAdapter.Postgres
36+
DbAdapter = DbAdapter.Postgres // 👈 optional, inferred from the connection for SQL Server, PostgreSQL, MySQL, Oracle and Informix
3737
});
3838
```
3939

0 commit comments

Comments
 (0)