Skip to content

Commit 8924a51

Browse files
committed
Removed no follow
1 parent a2315bb commit 8924a51

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sys/sqlite3/conn.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ const (
4848
SQLITE_OPEN_FULLMUTEX OpenFlags = C.SQLITE_OPEN_FULLMUTEX // The new database connection will use the "serialized" threading mode. This means the multiple threads can safely attempt to use the same database connection at the same time. (Mutexes will block any actual concurrency, but in this mode there is no harm in trying.)
4949
SQLITE_OPEN_SHAREDCACHE OpenFlags = C.SQLITE_OPEN_SHAREDCACHE // The database is opened shared cache enabled, overriding the default shared cache setting provided by sqlite3_enable_shared_cache().
5050
SQLITE_OPEN_PRIVATECACHE OpenFlags = C.SQLITE_OPEN_PRIVATECACHE // The database is opened shared cache disabled, overriding the default shared cache setting provided by sqlite3_enable_shared_cache().
51-
SQLITE_OPEN_NOFOLLOW OpenFlags = C.SQLITE_OPEN_NOFOLLOW // The database filename is not allowed to be a symbolic link
52-
SQLITE_OPEN_MIN = SQLITE_OPEN_READONLY
53-
SQLITE_OPEN_MAX = SQLITE_OPEN_NOFOLLOW
51+
// SQLITE_OPEN_NOFOLLOW OpenFlags = C.SQLITE_OPEN_NOFOLLOW // The database filename is not allowed to be a symbolic link
52+
SQLITE_OPEN_MIN = SQLITE_OPEN_READONLY
53+
SQLITE_OPEN_MAX = SQLITE_OPEN_PRIVATECACHE
5454
)
5555

5656
const (

0 commit comments

Comments
 (0)