Skip to content

Commit 6bedf77

Browse files
committed
fix: all e2e tests fixed, added back failfast
1 parent 7472e1a commit 6bedf77

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
run: go run ./cmd/sqlc-test-setup start
5858

5959
- name: test ./...
60-
run: gotestsum --junitfile junit.xml -- --tags=examples -timeout 20m ./... #TODO: Change back to -failfast
60+
run: gotestsum --junitfile junit.xml -- --tags=examples -timeout 20m -failfast ./...
6161
env:
6262
CI_SQLC_PROJECT_ID: ${{ secrets.CI_SQLC_PROJECT_ID }}
6363
CI_SQLC_AUTH_TOKEN: ${{ secrets.CI_SQLC_AUTH_TOKEN }}

internal/compiler/resolve.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,6 @@ func (comp *Compiler) resolveCatalogRefs(qc *QueryCatalog, rvs []*ast.RangeVar,
346346

347347
addColumnParam := func(ref paramRef, key string, location int) error {
348348
var schema, rel string
349-
// TODO: Deprecate defaultTable
350349
if defaultTable != nil {
351350
schema = defaultTable.Schema
352351
rel = defaultTable.Name

internal/endtoend/testdata/select_subquery/postgresql/stdlib/go/query.sql.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/endtoend/testdata/unnest_star/postgresql/pgx/go/query.sql.go

Lines changed: 1 addition & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)