diff options
Diffstat (limited to 'vendor/modernc.org/sqlite/norlimit.go')
-rw-r--r-- | vendor/modernc.org/sqlite/norlimit.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/modernc.org/sqlite/norlimit.go b/vendor/modernc.org/sqlite/norlimit.go new file mode 100644 index 0000000..52d3139 --- /dev/null +++ b/vendor/modernc.org/sqlite/norlimit.go @@ -0,0 +1,10 @@ +// Copyright 2021 The Sqlite Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +//go:build windows +// +build windows + +package sqlite // import "modernc.org/sqlite" + +func setMaxOpenFiles(n int) error { return nil } |