This file is indexed.

/usr/lib/ruby/vendor_ruby/database_cleaner/sequel/transaction.rb is in ruby-database-cleaner 1.5.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
require 'database_cleaner/sequel/base'
module DatabaseCleaner
  module Sequel
    class Transaction
      include ::DatabaseCleaner::Sequel::Base

      def self.check_fiber_brokenness
        if !@checked_fiber_brokenness && Fiber.new { Thread.current }.resume != Thread.current
          raise RuntimeError, "This ruby engine's Fibers are not compatible with Sequel's connection pool. " +
            "To work around this, please use DatabaseCleaner.cleaning with a block instead of " +
            "DatabaseCleaner.start and DatabaseCleaner.clean"
        end
        @checked_fiber_brokenness = true
      end

      def start
        self.class.check_fiber_brokenness

        @fibers ||= []
        db = self.db
        f = Fiber.new do
          db.transaction(:rollback => :always, :savepoint => true) do
            Fiber.yield
          end
        end
        f.resume
        @fibers << f
      end

      def clean
        f = @fibers.pop
        f.resume
      end

      def cleaning
        self.db.transaction(:rollback => :always, :savepoint => true) { yield }
      end
    end
  end
end