Skip to content

Commit

Permalink
feat: bump sage to v0.328.0
Browse files Browse the repository at this point in the history
  • Loading branch information
loodde authored and odsod committed Nov 4, 2024
1 parent e890930 commit 3632c94
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .sage/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module sage

go 1.23

require go.einride.tech/sage v0.314.0
require go.einride.tech/sage v0.328.0
4 changes: 2 additions & 2 deletions .sage/go.sum
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
go.einride.tech/sage v0.314.0 h1:PcJQD7yk+U9+nvGDOGXNV91cywzoHn540MxJRpu+w+E=
go.einride.tech/sage v0.314.0/go.mod h1:EzV5uciFX7/2ho8EKB5K9JghOfXIxlzs694b+Tkl5GQ=
go.einride.tech/sage v0.328.0 h1:72XhWkfj8HWIQGeZVu5IfRiBngEycn+D8lCGSl5aAk0=
go.einride.tech/sage v0.328.0/go.mod h1:EzV5uciFX7/2ho8EKB5K9JghOfXIxlzs694b+Tkl5GQ=
1 change: 0 additions & 1 deletion internal/codegen/databasecodegen/goldenfile_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ func runGoldenFileTest(t *testing.T, name string, fn func(*spanddl.Database, *co
testdataFiles, err := filepath.Glob("testdata/*.sql")
assert.NilError(t, err)
for _, testdataFile := range testdataFiles {
testdataFile := testdataFile
t.Run(fmt.Sprintf("%s/%s", name, testdataFile), func(t *testing.T) {
t.Parallel()
testdata, err := os.ReadFile(testdataFile)
Expand Down
1 change: 0 additions & 1 deletion internal/codegen/descriptorcodegen/goldenfile_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ func runGoldenFileTest(t *testing.T, name string, fn func(*spanddl.Database, *co
testdataFiles, err := filepath.Glob("testdata/*.sql")
assert.NilError(t, err)
for _, testdataFile := range testdataFiles {
testdataFile := testdataFile
t.Run(fmt.Sprintf("%s/%s", name, testdataFile), func(t *testing.T) {
t.Parallel()
testdata, err := os.ReadFile(testdataFile)
Expand Down
1 change: 0 additions & 1 deletion spanddl/database_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,6 @@ func TestDatabase_ApplyDDL(t *testing.T) {
},
},
} {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
var db Database
Expand Down
1 change: 0 additions & 1 deletion spanfiltering/transpile_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ func TestTranspileFilter(t *testing.T) {
errorContains: "wildcard only supported in leading or trailing positions",
},
} {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
declarations, err := filtering.NewDeclarations(tt.declarations...)
Expand Down
1 change: 0 additions & 1 deletion spanordering/transpile_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ func TestTranspileOrderBy(t *testing.T) {
},
},
} {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
assert.DeepEqual(t, tt.expected, TranspileOrderBy(tt.orderBy))
Expand Down

0 comments on commit 3632c94

Please sign in to comment.