# File lib/dbd/pg/database.rb, line 281 281: def rollback 282: if @in_transaction 283: _exec("ROLLBACK") 284: @in_transaction = false 285: else 286: # TODO: Warn? 287: end 288: end