Skip to content

Commit

Permalink
Fixed incorrect commit for maxBulk size
Browse files Browse the repository at this point in the history
  • Loading branch information
noborus committed Nov 9, 2023
1 parent 1804a39 commit 015056d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database_connect_cgo.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func Connect(driver, dsn string) (*DB, error) {
switch driver {
case "sqlite3", "sqlite3_ext", "sqlite":
db.quote = "`"
db.maxBulk = 10000
db.maxBulk = 1000
case "mysql":
db.quote = "`"
db.maxBulk = 1000
Expand Down

0 comments on commit 015056d

Please sign in to comment.