Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Database#transaction returns block result #508

Merged
merged 1 commit into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ This release drops support for Ruby 2.7. [#453] @flavorjones
- `Database#columns` returns a list of internal frozen strings. [#155, #474, #486] @tenderlove
- Freeze results that come from the database. [#480] @tenderlove
- The encoding of a Database is no longer cached. [#485] @tenderlove
- `Database#transaction` returns the result of the block when used with a block. @alexcwatt


### Removed
Expand Down
4 changes: 2 additions & 2 deletions lib/sqlite3/database.rb
Original file line number Diff line number Diff line change
Expand Up @@ -651,9 +651,9 @@ def transaction(mode = nil)
ensure
abort and rollback or commit
end
else
true
end

true
end

# Commits the current transaction. If there is no current transaction,
Expand Down
9 changes: 9 additions & 0 deletions test/test_database.rb
Original file line number Diff line number Diff line change
Expand Up @@ -686,5 +686,14 @@ def test_default_transaction_mode
ensure
tf&.unlink
end

def test_transaction_returns_true_without_block
assert @db.transaction
end

def test_transaction_returns_block_result
result = @db.transaction { :foo }
assert_equal :foo, result
end
end
end
Loading