Skip to content

Commit

Permalink
Merge pull request #256 from noborus/fix-max-bulk
Browse files Browse the repository at this point in the history
Fixed incorrect commit for maxBulk size
  • Loading branch information
noborus authored Nov 9, 2023
2 parents 1804a39 + 015056d commit 9ed6c16
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 9ed6c16

Please sign in to comment.