1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-23 23:29:42 +02:00

Update SQL Server driver library

This commit is contained in:
HarveyKandola 2019-06-25 15:37:19 +01:00
parent c538fc9eb1
commit 9c36241b58
37 changed files with 9138 additions and 1091 deletions

View file

@ -0,0 +1,12 @@
// Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build gofuzz
package batch
func Fuzz(data []byte) int {
Split(string(data), "GO")
return 0
}