We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82be107 commit a1386d8Copy full SHA for a1386d8
1 file changed
plugins/destination/mssql/client/client_test.go
@@ -5,8 +5,10 @@ import (
5
"fmt"
6
"os"
7
"testing"
8
+ "time"
9
10
"github.com/cloudquery/plugin-sdk/v4/plugin"
11
+ "github.com/cloudquery/plugin-sdk/v4/schema"
12
"github.com/goccy/go-json"
13
"github.com/stretchr/testify/require"
14
)
@@ -37,5 +39,6 @@ func TestPlugin(t *testing.T) {
37
39
RemoveColumn: true,
38
40
},
41
42
+ plugin.WithTestDataOptions(schema.TestSourceOptions{TimePrecision: 100 * time.Nanosecond}), // datetime2
43
44
}
0 commit comments