From 9b4002f5aca31db0f8d46972bec5d3cfa08d36ae Mon Sep 17 00:00:00 2001 From: Nuno Cruces Date: Tue, 11 Feb 2025 18:24:05 +0000 Subject: [PATCH] Add missing consts. --- const.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/const.go b/const.go index 086902a..82d8051 100644 --- a/const.go +++ b/const.go @@ -259,7 +259,10 @@ const ( DBCONFIG_TRUSTED_SCHEMA DBConfig = 1017 DBCONFIG_STMT_SCANSTATUS DBConfig = 1018 DBCONFIG_REVERSE_SCANORDER DBConfig = 1019 - // DBCONFIG_MAX DBConfig = 1019 + DBCONFIG_ENABLE_ATTACH_CREATE DBConfig = 1020 + DBCONFIG_ENABLE_ATTACH_WRITE DBConfig = 1021 + DBCONFIG_ENABLE_COMMENTS DBConfig = 1022 + // DBCONFIG_MAX DBConfig = 1022 ) // FcntlOpcode are the available opcodes for [Conn.FileControl].