# File lib/dbd_pg/Pg.rb, line 282
        def commit
          if @in_transaction
            _exec("COMMIT")
            @in_transaction = false
          else
            # TODO: Warn?
          end
        end