# File lib/postgres-pr/message.rb, line 280 def dump sz = @columns.inject(2) {|sum, col| sum + 4 + (col ? col.size : 0)} super(sz) do |buffer| buffer.write_int16_network(@columns.size) @columns.each {|col| buffer.write_int32_network(col ? col.size : -1) buffer.write(col) if col } end end
Generated with the Darkfish Rdoc Generator 2.