diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2024-01-25 22:36:00 +0900 |
---|---|---|
committer | mattn <mattn.jp@gmail.com> | 2024-01-25 22:55:22 +0900 |
commit | c91bca4fb499831d1bf62fb2b3019338d5a3eb41 (patch) | |
tree | eb8952f7b7c394790c620a65c20c74189f1fcb47 /sqlite3_type.go | |
parent | Fix musl build (#1164) (diff) | |
download | golite-c91bca4fb499831d1bf62fb2b3019338d5a3eb41.tar.gz golite-c91bca4fb499831d1bf62fb2b3019338d5a3eb41.tar.xz |
update go version to 1.19
Diffstat (limited to 'sqlite3_type.go')
-rw-r--r-- | sqlite3_type.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlite3_type.go b/sqlite3_type.go index 0fd8210..20537a0 100644 --- a/sqlite3_type.go +++ b/sqlite3_type.go @@ -74,7 +74,7 @@ func scanType(cdt string) reflect.Type { case SQLITE_TIME: return reflect.TypeOf(sql.NullTime{}) } - return reflect.TypeOf(new(interface{})) + return reflect.TypeOf(new(any)) } func databaseTypeConvSqlite(t string) int { |