Skip to content

Commit 557c8b2

Browse files
committed
Database#transaction returns block result
1 parent 62dc6e7 commit 557c8b2

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ This release drops support for Ruby 2.7. [#453] @flavorjones
3333
- `Database#columns` returns a list of internal frozen strings. [#155, #474, #486] @tenderlove
3434
- Freeze results that come from the database. [#480] @tenderlove
3535
- The encoding of a Database is no longer cached. [#485] @tenderlove
36+
- `Database#transaction` returns the result of the block when used with a block. @alexcwatt
3637

3738

3839
### Removed

lib/sqlite3/database.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -651,9 +651,9 @@ def transaction(mode = nil)
651651
ensure
652652
abort and rollback or commit
653653
end
654+
else
655+
true
654656
end
655-
656-
true
657657
end
658658

659659
# Commits the current transaction. If there is no current transaction,

test/test_database.rb

+9
Original file line numberDiff line numberDiff line change
@@ -686,5 +686,14 @@ def test_default_transaction_mode
686686
ensure
687687
tf&.unlink
688688
end
689+
690+
def test_transaction_returns_true_without_block
691+
assert @db.transaction
692+
end
693+
694+
def test_transaction_returns_block_result
695+
result = @db.transaction { :foo }
696+
assert_equal :foo, result
697+
end
689698
end
690699
end

0 commit comments

Comments
 (0)