Refactor code to use 'any' type and improve context handling
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -51,9 +51,9 @@ func TestIntersectImportColumns(t *testing.T) {
|
||||
func TestCoerceSQLiteValueForPostgresBoolean(t *testing.T) {
|
||||
tests := []struct {
|
||||
name string
|
||||
input interface{}
|
||||
input any
|
||||
destinationType string
|
||||
want interface{}
|
||||
want any
|
||||
}{
|
||||
{name: "string true", input: "true", destinationType: "boolean", want: true},
|
||||
{name: "string false", input: "0", destinationType: "boolean", want: false},
|
||||
|
||||
Reference in New Issue
Block a user