This file is indexed.

/usr/lib/ruby/vendor_ruby/sequel/adapters/jdbc/informix.rb is in ruby-sequel 3.33.0-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
Sequel.require 'adapters/shared/informix'

module Sequel
  module JDBC
    # Database and Dataset instance methods for Informix specific
    # support via JDBC.
    module Informix
      # Database instance methods for Informix databases accessed via JDBC.
      module DatabaseMethods
        include Sequel::Informix::DatabaseMethods
        
        private
        
        # TODO: implement
        def last_insert_id(conn, opts={})
          nil
        end
      end
      
      # Dataset class for Informix datasets accessed via JDBC.
      class Dataset < JDBC::Dataset
        include Sequel::Informix::DatasetMethods
      end
    end
  end
end