You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Kitaiti Makoto (Jira)" <ji...@apache.org> on 2019/12/20 05:13:00 UTC

[jira] [Updated] (ARROW-7442) [Ruby]Specifying column type as time causes segmentation fault

     [ https://issues.apache.org/jira/browse/ARROW-7442?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Kitaiti Makoto updated ARROW-7442:
----------------------------------
    Description: 
Hi, I might find a bug.

When we specify column type as time via Arrow::Table.load's column_types named argument, it causes segmentation fault:

I think Ruby's any extension libraries should not cause SEGV.

Script to reproduce this issue(timedata.rb):
{code:java}
require "arrow"
CSV_FILE = File.join(__dir__, "timedata.csv")
table = Arrow::Table.load(CSV_FILE, column_types: [["datetime", :time]]{code}
Sample CSV file(timedata.csv) is:
{code:java}
id,datetime,name
1,2019-12-19T18:30,
,,
{code}
Result:
{code:java}
% ruby -v ./timedata.rb
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/data-type.rb:88: [BUG] Segmentation fault at 0x0000000000000008
ruby 2.6.5p114 (2019-10-01 revision 67812) [x86_64-linux]-- Control frame information -----------------------------------------------
c:0018 p:---- s:0097 e:000096 CFUNC  :initialize
c:0017 p:---- s:0094 e:000093 CFUNC  :new
c:0016 p:0125 s:0090 e:000089 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/data-type.rb:88
c:0015 p:0015 s:0080 e:000077 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-read-options.rb:22
c:0014 p:0011 s:0072 e:000071 BLOCK  /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:110 [FINISH]
c:0013 p:---- s:0067 e:000066 CFUNC  :each
c:0012 p:0161 s:0063 e:000062 BLOCK  /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:109 [FINISH]
c:0011 p:---- s:0057 e:000056 CFUNC  :each
c:0010 p:0019 s:0053 e:000052 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:93
c:0009 p:0004 s:0048 e:000047 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:160
c:0008 p:0042 s:0042 e:000041 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:39
c:0007 p:0018 s:0038 e:000037 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:26
c:0006 p:0078 s:0032 e:000031 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb:152
c:0005 p:0139 s:0027 e:000026 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb:50
c:0004 p:0015 s:0019 e:000018 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb:22
c:0003 p:0018 s:0013 e:000012 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table.rb:29
c:0002 p:0054 s:0007 E:0006f8 EVAL   ./timedata.rb:5 [FINISH]
c:0001 p:0000 s:0003 E:002070 (none) [FINISH]-- Ruby level backtrace information ----------------------------------------
./timedata.rb:5:in `<main>'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table.rb:29:in `load'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb:22:in `load'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb:50:in `load'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb:152:in `load_as_csv'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:26:in `load'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:39:in `load'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:160:in `load_from_path'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:93:in `reader_options'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:93:in `each'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:109:in `block in reader_options'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:109:in `each'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:110:in `block (2 levels) in reader_options'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-read-options.rb:22:in `add_column_type'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/data-type.rb:88:in `resolve'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/data-type.rb:88:in `new'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/data-type.rb:88:in `initialize'-- Machine register context ------------------------------------------------
 RIP: 0x00007f4617b82f1e RBP: 0x00007fffd292f670 RSP: 0x00007fffdac318c0
 RAX: 0x0000000000000000 RBX: 0x00007fffd292f660 RCX: 0x0000000000000001
 RDX: 0x0000000000000001 RDI: 0x00007fffdac31940 RSI: 0x00007fffd2cc8640
  R8: 0x00007fffd2cc8640  R9: 0x0000000000000001 R10: 0x0000000000000032
 R11: 0x00007f461e3bc6f0 R12: 0x0000000000000000 R13: 0x00007fffdac31940
 R14: 0x00007fffd2cc8b00 R15: 0x00007fffd2b75590 EFL: 0x0000000000010246-- C level backtrace information -------------------------------------------
/usr/local/bin/ruby(rb_vm_bugreport+0x7d3) [0x7f4622c89493] vm_dump.c:715
/usr/local/bin/ruby(rb_bug_context+0xe4) [0x7f4622c7c4f4] error.c:609
/usr/local/bin/ruby(sigsegv+0x42) [0x7f4622b4d832] signal.c:998
/lib/x86_64-linux-gnu/libpthread.so.0(__restore_rt+0x0) [0x7f46221d2890]
/usr/lib/x86_64-linux-gnu/libarrow-glib.so.15(0x7f4617b82f1e) [0x7f4617b82f1e]
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0(0x7f461e395a7a) [0x7f461e395a7a]
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0(g_object_newv+0x2ad) [0x7f461e3971bd]
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so(rbgobj_gobject_new+0x11c) [0x7f461e9392bc] rbgobj_object.c:397
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so(rbgobj_gobject_new) (null):0
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so(rg_initialize+0x12b) [0x7f461e93942b] rbgobj_object.c:867
/usr/local/bin/ruby(vm_call0_body+0x2d8) [0x7f4622bd48e8] vm_eval.c:86
/usr/local/bin/ruby(rb_vm_call0+0x35) [0x7f4622bd592f] vm_eval.c:60
/usr/local/bin/ruby(rb_call0) vm_eval.c:308
/usr/local/bin/ruby(rb_class_s_new+0x21) [0x7f4622abe811] object.c:2187
/usr/local/bin/ruby(vm_call_cfunc+0x10a) [0x7f4622bc73ea] vm_insnhelper.c:1908
/usr/local/bin/ruby(vm_call_method+0xe3) [0x7f4622bd3333] vm_insnhelper.c:2400
/usr/local/bin/ruby(vm_exec_core+0x12f) [0x7f4622bd949f] insns.def:765
/usr/local/bin/ruby(rb_vm_exec+0xac) [0x7f4622bcf85c] vm.c:1885
/usr/local/bin/ruby(rb_yield+0x18e) [0x7f4622bd045e] vm.c:1092
/usr/local/bin/ruby(rb_ary_each+0x3c) [0x7f4622bf3e0c] array.c:2087
/usr/local/bin/ruby(vm_call_cfunc+0x10a) [0x7f4622bc73ea] vm_insnhelper.c:1908
/usr/local/bin/ruby(vm_call_method+0xe3) [0x7f4622bd3333] vm_insnhelper.c:2400
/usr/local/bin/ruby(vm_exec_core+0x1d3) [0x7f4622bd9543] insns.def:750
/usr/local/bin/ruby(rb_vm_exec+0xac) [0x7f4622bcf85c] vm.c:1885
/usr/local/bin/ruby(invoke_block_from_c_bh+0x1f4) [0x7f4622bd09e4] vm.c:1092
/usr/local/bin/ruby(each_pair_i_fast+0x3b) [0x7f4622a4af9b] hash.c:2775
/usr/local/bin/ruby(hash_foreach_call+0x75) [0x7f4622a4c7d5] hash.c:1136
/usr/local/bin/ruby(rb_ensure+0xd3) [0x7f4622a2c013] eval.c:1076
/usr/local/bin/ruby(rb_hash_foreach+0x7e) [0x7f4622a5371e] hash.c:1229
/usr/local/bin/ruby(rb_hash_each_pair+0x28) [0x7f4622a540e8] hash.c:2806
/usr/local/bin/ruby(vm_call_cfunc+0x10a) [0x7f4622bc73ea] vm_insnhelper.c:1908
/usr/local/bin/ruby(vm_call_method+0xe3) [0x7f4622bd3333] vm_insnhelper.c:2400
/usr/local/bin/ruby(vm_exec_core+0x1d3) [0x7f4622bd9543] insns.def:750
/usr/local/bin/ruby(rb_vm_exec+0x6cf) [0x7f4622bcfe7f] vm.c:1894
/usr/local/bin/ruby(ruby_exec_internal+0xd3) [0x7f4622a26213] eval.c:262
/usr/local/bin/ruby(ruby_exec_node+0x11) [0x7f4622a2afcb] eval.c:326
/usr/local/bin/ruby(ruby_run_node) eval.c:318
/usr/local/bin/ruby(main+0x5b) [0x7f4622a25f0b] ./main.c:42-- Other runtime information -----------------------------------------------* Loaded script: ./timedata.rb* Loaded features:    0 enumerator.so
    1 thread.rb
    2 rational.so
    3 complex.so
    4 /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
    5 /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
    6 /usr/local/lib/ruby/2.6.0/x86_64-linux/rbconfig.rb
    7 /usr/local/lib/ruby/2.6.0/rubygems/compatibility.rb
    8 /usr/local/lib/ruby/2.6.0/rubygems/defaults.rb
    9 /usr/local/lib/ruby/2.6.0/rubygems/deprecate.rb
   10 /usr/local/lib/ruby/2.6.0/rubygems/errors.rb
   11 /usr/local/lib/ruby/2.6.0/rubygems/version.rb
   12 /usr/local/lib/ruby/2.6.0/rubygems/requirement.rb
   13 /usr/local/lib/ruby/2.6.0/rubygems/platform.rb
   14 /usr/local/lib/ruby/2.6.0/rubygems/basic_specification.rb
   15 /usr/local/lib/ruby/2.6.0/rubygems/stub_specification.rb
   16 /usr/local/lib/ruby/2.6.0/delegate.rb
   17 /usr/local/lib/ruby/2.6.0/uri/rfc2396_parser.rb
   18 /usr/local/lib/ruby/2.6.0/uri/rfc3986_parser.rb
   19 /usr/local/lib/ruby/2.6.0/uri/common.rb
   20 /usr/local/lib/ruby/2.6.0/uri/generic.rb
   21 /usr/local/lib/ruby/2.6.0/uri/file.rb
   22 /usr/local/lib/ruby/2.6.0/uri/ftp.rb
   23 /usr/local/lib/ruby/2.6.0/uri/http.rb
   24 /usr/local/lib/ruby/2.6.0/uri/https.rb
   25 /usr/local/lib/ruby/2.6.0/uri/ldap.rb
   26 /usr/local/lib/ruby/2.6.0/uri/ldaps.rb
   27 /usr/local/lib/ruby/2.6.0/uri/mailto.rb
   28 /usr/local/lib/ruby/2.6.0/uri.rb
   29 /usr/local/lib/ruby/2.6.0/rubygems/specification_policy.rb
   30 /usr/local/lib/ruby/2.6.0/rubygems/util/list.rb
   31 /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
   32 /usr/local/lib/ruby/2.6.0/rubygems/specification.rb
   33 /usr/local/lib/ruby/2.6.0/rubygems/exceptions.rb
   34 /usr/local/lib/ruby/2.6.0/rubygems/util.rb
   35 /usr/local/lib/ruby/2.6.0/rubygems/bundler_version_finder.rb
   36 /usr/local/lib/ruby/2.6.0/rubygems/dependency.rb
   37 /usr/local/lib/ruby/2.6.0/rubygems/core_ext/kernel_gem.rb
   38 /usr/local/lib/ruby/2.6.0/monitor.rb
   39 /usr/local/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb
   40 /usr/local/lib/ruby/2.6.0/rubygems/core_ext/kernel_warn.rb
   41 /usr/local/lib/ruby/2.6.0/rubygems.rb
   42 /usr/local/lib/ruby/2.6.0/rubygems/path_support.rb
   43 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/version.rb
   44 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/core_ext/name_error.rb
   45 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/levenshtein.rb
   46 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/jaro_winkler.rb
   47 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checker.rb
   48 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checkers/name_error_checkers/class_name_checker.rb
   49 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checkers/name_error_checkers/variable_name_checker.rb
   50 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checkers/name_error_checkers.rb
   51 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checkers/method_name_checker.rb
   52 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checkers/key_error_checker.rb
   53 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checkers/null_checker.rb
   54 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/formatters/plain_formatter.rb
   55 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean.rb
   56 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/extpp-0.0.8/lib/extpp/setup.rb
   57 /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
   58 /usr/local/lib/ruby/2.6.0/pathname.rb
   59 /usr/local/lib/ruby/2.6.0/English.rb
   60 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2/deprecatable.rb
   61 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
   62 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2/version.rb
   63 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2/regex.rb
   64 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2/deprecated.rb
   65 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.rb
   66 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject_introspection.so
   67 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/arg-info.rb
   68 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/collection-reader.rb
   69 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/boxed-info.rb
   70 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/callable-info.rb
   71 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/function-info.rb
   72 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/interface-info.rb
   73 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/object-info.rb
   74 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/registered-type-info.rb
   75 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/repository.rb
   76 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/struct-info.rb
   77 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/type-info.rb
   78 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/type-tag.rb
   79 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/union-info.rb
   80 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/version.rb
   81 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/loader.rb
   82 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection.rb
   83 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/loader.rb
   84 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.so
   85 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/action.rb
   86 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/action-map.rb
   87 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/application-command-line.rb
   88 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/content-type.rb
   89 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/file.rb
   90 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/icon.rb
   91 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/inet-address.rb
   92 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/input-stream.rb
   93 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/menu-item.rb
   94 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/pollable-input-stream.rb
   95 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/pollable-output-stream.rb
   96 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/resources.rb
   97 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/settings.rb
   98 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/settings-schema-source.rb
   99 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/simple-action.rb
  100 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/deprecated.rb
  101 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.rb
  102 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/version.rb
  103 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/block-closable.rb
  104 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/loader.rb
  105 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/array.rb
  106 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date_core.so
  107 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date.rb
  108 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/array-builder.rb
  109 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/binary-array-builder.rb
  110 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/chunked-array.rb
  111 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/column.rb
  112 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/compression-type.rb
  113 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/forwardable-1.3.1/lib/forwardable/impl.rb
  114 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/forwardable-1.3.1/lib/forwardable/version.rb
  115 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/forwardable-1.3.1/lib/forwardable.rb
  116 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/fields_converter.rb
  117 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/match_p.rb
  118 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/strscan-1.0.3/lib/strscan.so
  119 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/delete_suffix.rb
  120 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/row.rb
  121 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/table.rb
  122 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/parser.rb
  123 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/writer.rb
  124 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/version.rb
  125 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/core_ext/array.rb
  126 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/core_ext/string.rb
  127 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv.rb
  128 /usr/local/lib/ruby/2.6.0/time.rb
  129 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb
  130 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-read-options.rb
  131 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/data-type.rb
  132 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/date32-array.rb
  133 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/date32-array-builder.rb
  134 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/date64-array.rb
  135 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/date64-array-builder.rb
  136 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/decimal128.rb
  137 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/decimal128-array.rb
  138 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.so
  139 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.rb
  140 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/bigdecimal-extension.rb
  141 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/decimal128-array-builder.rb
  142 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/decimal128-data-type.rb
  143 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/dense-union-data-type.rb
  144 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/dictionary-data-type.rb
  145 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/field.rb
  146 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/file-output-stream.rb
  147 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/list-array-builder.rb
  148 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/list-data-type.rb
  149 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/null-array-builder.rb
  150 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/path-extension.rb
  151 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/record.rb
  152 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/column-containable.rb
  153 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/record-containable.rb
  154 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/record-batch.rb
  155 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/record-batch-builder.rb
  156 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/record-batch-file-reader.rb
  157 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/record-batch-stream-reader.rb
  158 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/rolling-window.rb
  159 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/field-containable.rb
  160 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/schema.rb
  161 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/slicer.rb
  162 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/sparse-union-data-type.rb
  163 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/struct-array.rb
  164 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/struct-array-builder.rb
  165 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/struct-data-type.rb
  166 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/group.rb
  167 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table.rb
  168 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-formatter.rb
  169 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-list-formatter.rb
  170 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-table-formatter.rb
  171 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb
  172 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-saver.rb
  173 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/tensor.rb
  174 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time.rb
  175 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time32-array.rb
  176 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time32-array-builder.rb
  177 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time32-data-type.rb
  178 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time64-array.rb
  179 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time64-array-builder.rb
  180 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time64-data-type.rb
  181 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/timestamp-array.rb
  182 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/timestamp-array-builder.rb
  183 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/timestamp-data-type.rb
  184 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/writable.rb
  185 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.so
  186 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.rb* Process memory map:7f460c000000-7f460c021000 rw-p 00000000 00:00 0
7f460c021000-7f4610000000 ---p 00000000 00:00 0
7f46117b0000-7f46119a0000 r--s 00000000 00:00 33307              /lib/x86_64-linux-gnu/libc-2.27.so
7f46119a0000-7f46119ea000 rw-p 00000000 00:00 0
7f46119ee000-7f4611aff000 r--s 00000000 00:00 1661697            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
7f4611aff000-7f4612d50000 r--s 00000000 00:00 453996             /usr/local/bin/ruby
7f4612d50000-7f4612d56000 r-xp 00000000 00:00 1659347            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/extpp-0.0.8/ext/extpp/libruby-extpp.so
7f4612d56000-7f4612d88000 ---p 00006000 00:00 1659347            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/extpp-0.0.8/ext/extpp/libruby-extpp.so
7f4612d88000-7f4612f55000 ---p 00000038 00:00 1659347            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/extpp-0.0.8/ext/extpp/libruby-extpp.so
7f4612f55000-7f4612f56000 r--p 00005000 00:00 1659347            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/extpp-0.0.8/ext/extpp/libruby-extpp.so
7f4612f56000-7f4612f57000 rw-p 00006000 00:00 1659347            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/extpp-0.0.8/ext/extpp/libruby-extpp.so
7f4612f60000-7f4612f78000 r-xp 00000000 00:00 2006190            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.so
7f4612f78000-7f4613017000 ---p 00018000 00:00 2006190            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.so
7f4613017000-7f4613178000 ---p 000000b7 00:00 2006190            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.so
7f4613178000-7f4613179000 r--p 00018000 00:00 2006190            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.so
7f4613179000-7f461317a000 rw-p 00019000 00:00 2006190            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.so
7f4613180000-7f4613195000 r-xp 00000000 00:00 279300             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.so
7f4613195000-7f46131be000 ---p 00015000 00:00 279300             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.so
7f46131be000-7f4613394000 ---p 0000003e 00:00 279300             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.so
7f4613394000-7f4613395000 r--p 00014000 00:00 279300             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.so
7f4613395000-7f4613396000 rw-p 00015000 00:00 279300             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.so
7f46133a0000-7f46133a8000 r-xp 00000000 00:00 428789             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/strscan-1.0.3/lib/strscan.so
7f46133a8000-7f46133c2000 ---p 00008000 00:00 428789             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/strscan-1.0.3/lib/strscan.so
7f46133c2000-7f46135a7000 ---p 00000022 00:00 428789             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/strscan-1.0.3/lib/strscan.so
7f46135a7000-7f46135a8000 r--p 00007000 00:00 428789             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/strscan-1.0.3/lib/strscan.so
7f46135a8000-7f46135a9000 rw-p 00008000 00:00 428789             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/strscan-1.0.3/lib/strscan.so
7f46135b0000-7f46135e5000 r-xp 00000000 00:00 656316             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date_core.so
7f46135e5000-7f4613641000 ---p 00035000 00:00 656316             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date_core.so
7f4613641000-7f46137e4000 ---p 00000091 00:00 656316             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date_core.so
7f46137e4000-7f46137e5000 r--p 00034000 00:00 656316             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date_core.so
7f46137e5000-7f46137e6000 rw-p 00035000 00:00 656316             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date_core.so
7f46137e6000-7f46137e7000 rw-p 00000000 00:00 0
7f46137f0000-7f46137f1000 ---p 00000000 00:00 0
7f46137f1000-7f4613ff1000 rw-p 00000000 00:00 0
7f4614000000-7f46148c8000 rw-p 00000000 00:00 0
7f46148d5000-7f4614990000 r--s 00000000 00:00 647808             /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15.1.0
7f4614990000-7f46149b4000 r-xp 00000000 00:00 33379              /lib/x86_64-linux-gnu/liblzma.so.5.2.2
7f46149b4000-7f46149b6000 ---p 00024000 00:00 33379              /lib/x86_64-linux-gnu/liblzma.so.5.2.2
7f46149b6000-7f4614bb4000 ---p 00000026 00:00 33379              /lib/x86_64-linux-gnu/liblzma.so.5.2.2
7f4614bb4000-7f4614bb5000 r--p 00024000 00:00 33379              /lib/x86_64-linux-gnu/liblzma.so.5.2.2
7f4614bb5000-7f4614bb6000 rw-p 00025000 00:00 33379              /lib/x86_64-linux-gnu/liblzma.so.5.2.2
7f4614bc0000-7f4614bcc000 r-xp 00000000 00:00 138042             /usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1
7f4614bcc000-7f4614bcd000 ---p 0000c000 00:00 138042             /usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1
7f4614bcd000-7f4614dcb000 ---p 0000000d 00:00 138042             /usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1
7f4614dcb000-7f4614dcc000 r--p 0000b000 00:00 138042             /usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1
7f4614dcc000-7f4614dcd000 rw-p 0000c000 00:00 138042             /usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1
7f4614dcd000-7f4614ddb000 rw-p 00000000 00:00 0
7f4614de0000-7f4614e04000 r-xp 00000000 00:00 2002700            /usr/lib/x86_64-linux-gnu/libgflags.so.2.2.1
7f4614e04000-7f4614e05000 ---p 00024000 00:00 2002700            /usr/lib/x86_64-linux-gnu/libgflags.so.2.2.1
7f4614e05000-7f4615003000 ---p 00000025 00:00 2002700            /usr/lib/x86_64-linux-gnu/libgflags.so.2.2.1
7f4615003000-7f4615004000 r--p 00023000 00:00 2002700            /usr/lib/x86_64-linux-gnu/libgflags.so.2.2.1
7f4615004000-7f4615005000 rw-p 00024000 00:00 2002700            /usr/lib/x86_64-linux-gnu/libgflags.so.2.2.1
7f4615010000-7f461502f000 r-xp 00000000 00:00 2002028            /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.4
7f461502f000-7f4615030000 ---p 0001f000 00:00 2002028            /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.4
7f4615030000-7f461522e000 ---p 00000020 00:00 2002028            /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.4
7f461522e000-7f461522f000 r--p 0001e000 00:00 2002028            /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.4
7f461522f000-7f4615230000 rw-p 0001f000 00:00 2002028            /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.4
7f4615230000-7f4615234000 r-xp 00000000 00:00 2001795            /usr/lib/x86_64-linux-gnu/libboost_system.so.1.65.1
7f4615234000-7f4615235000 ---p 00004000 00:00 2001795            /usr/lib/x86_64-linux-gnu/libboost_system.so.1.65.1
7f4615235000-7f4615433000 ---p 00000005 00:00 2001795            /usr/lib/x86_64-linux-gnu/libboost_system.so.1.65.1
7f4615433000-7f4615434000 r--p 00003000 00:00 2001795            /usr/lib/x86_64-linux-gnu/libboost_system.so.1.65.1
7f4615434000-7f4615435000 rw-p 00004000 00:00 2001795            /usr/lib/x86_64-linux-gnu/libboost_system.so.1.65.1
7f4615440000-7f4615459000 r-xp 00000000 00:00 2001919            /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.65.1
7f4615459000-7f461545a000 ---p 00019000 00:00 2001919            /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.65.1
7f461545a000-7f4615658000 ---p 0000001a 00:00 2001919            /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.65.1
7f4615658000-7f4615659000 r--p 00018000 00:00 2001919            /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.65.1
7f4615659000-7f461565a000 rw-p 00019000 00:00 2001919            /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.65.1
7f4615660000-7f46156da000 r-xp 00000000 00:00 137406             /usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3
7f46156da000-7f46156db000 ---p 0007a000 00:00 137406             /usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3
7f46156db000-7f46158d9000 ---p 0000007b 00:00 137406             /usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3
7f46158d9000-7f46158da000 r--p 00079000 00:00 137406             /usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3
7f46158da000-7f46158db000 rw-p 0007a000 00:00 137406             /usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3
7f46158e0000-7f46158e7000 r-xp 00000000 00:00 1001124            /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.7
7f46158e7000-7f46158e8000 ---p 00007000 00:00 1001124            /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.7
7f46158e8000-7f4615ae6000 ---p 00000008 00:00 1001124            /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.7
7f4615ae6000-7f4615ae7000 r--p 00006000 00:00 1001124            /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.7
7f4615ae7000-7f4615ae8000 rw-p 00007000 00:00 1001124            /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.7
7f4615af0000-7f4615b0b000 r-xp 00000000 00:00 137962             /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1
7f4615b0b000-7f4615b0c000 ---p 0001b000 00:00 137962             /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1
7f4615b0c000-7f4615d0a000 ---p 0000001c 00:00 137962             /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1
7f4615d0a000-7f4615d0b000 r--p 0001a000 00:00 137962             /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1
7f4615d0b000-7f4615d0c000 rw-p 0001b000 00:00 137962             /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1
7f4615d10000-7f4615d2f000 r-xp 00000000 00:00 2003623            /usr/lib/x86_64-linux-gnu/libglog.so.0.0.0
7f4615d2f000-7f4615d31000 ---p 0001f000 00:00 2003623            /usr/lib/x86_64-linux-gnu/libglog.so.0.0.0
7f4615d31000-7f4615f2f000 ---p 00000021 00:00 2003623            /usr/lib/x86_64-linux-gnu/libglog.so.0.0.0
7f4615f2f000-7f4615f30000 r--p 0001f000 00:00 2003623            /usr/lib/x86_64-linux-gnu/libglog.so.0.0.0
7f4615f30000-7f4615f31000 rw-p 00020000 00:00 2003623            /usr/lib/x86_64-linux-gnu/libglog.so.0.0.0
7f4615f31000-7f4615f41000 rw-p 00000000 00:00 0
7f4615f50000-7f4615f5b000 r-xp 00000000 00:00 2002035            /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.4
7f4615f5b000-7f4615f5c000 ---p 0000b000 00:00 2002035            /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.4
7f4615f5c000-7f461615a000 ---p 0000000c 00:00 2002035            /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.4
7f461615a000-7f461615b000 r--p 0000a000 00:00 2002035            /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.4
7f461615b000-7f461615c000 rw-p 0000b000 00:00 2002035            /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.4
7f4616160000-7f46161e6000 r-xp 00000000 00:00 2002185            /usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.4
7f46161e6000-7f46161e7000 ---p 00086000 00:00 2002185            /usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.4
7f46161e7000-7f46163e5000 ---p 00000087 00:00 2002185            /usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.4
7f46163e5000-7f46163e6000 r--p 00085000 00:00 2002185            /usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.4
7f46163e6000-7f46163e7000 rw-p 00086000 00:00 2002185            /usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.4
7f46163f0000-7f4616400000 r-xp 00000000 00:00 2002344            /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.1.0
7f4616400000-7f4616401000 ---p 00010000 00:00 2002344            /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.1.0
7f4616401000-7f46165ff000 ---p 00000011 00:00 2002344            /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.1.0
7f46165ff000-7f4616600000 r--p 0000f000 00:00 2002344            /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.1.0
7f4616600000-7f4616601000 rw-p 00010000 00:00 2002344            /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.1.0
7f4616610000-7f4616627000 r-xp 00000000 00:00 34041              /lib/x86_64-linux-gnu/libgcc_s.so.1
7f4616627000-7f4616628000 ---p 00017000 00:00 34041              /lib/x86_64-linux-gnu/libgcc_s.so.1
7f4616628000-7f4616826000 ---p 00000018 00:00 34041              /lib/x86_64-linux-gnu/libgcc_s.so.1
7f4616826000-7f4616827000 r--p 00016000 00:00 34041              /lib/x86_64-linux-gnu/libgcc_s.so.1
7f4616827000-7f4616828000 rw-p 00017000 00:00 34041              /lib/x86_64-linux-gnu/libgcc_s.so.1
7f4616830000-7f46169a9000 r-xp 00000000 00:00 34137              /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f46169a9000-7f46169b6000 ---p 00179000 00:00 34137              /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f46169b6000-7f4616ba9000 ---p 00000186 00:00 34137              /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f4616ba9000-7f4616bb3000 r--p 00179000 00:00 34137              /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f4616bb3000-7f4616bb5000 rw-p 00183000 00:00 34137              /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f4616bb5000-7f4616bb9000 rw-p 00000000 00:00 0
7f4616bc0000-7f46176da000 r-xp 00000000 00:00 2003880            /usr/lib/x86_64-linux-gnu/libarrow.so.15.1.0
7f46176da000-7f4617717000 ---p 00b1a000 00:00 2003880            /usr/lib/x86_64-linux-gnu/libarrow.so.15.1.0
7f4617717000-7f46178d9000 ---p 00000b57 00:00 2003880            /usr/lib/x86_64-linux-gnu/libarrow.so.15.1.0
7f46178d9000-7f4617913000 r--p 00b19000 00:00 2003880            /usr/lib/x86_64-linux-gnu/libarrow.so.15.1.0
7f4617913000-7f4617916000 rw-p 00b53000 00:00 2003880            /usr/lib/x86_64-linux-gnu/libarrow.so.15.1.0
7f4617916000-7f4617b2b000 rw-p 00000000 00:00 0
7f4617b30000-7f4617be7000 r-xp 00000000 00:00 647808             /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15.1.0
7f4617be7000-7f4617beb000 ---p 000b7000 00:00 647808             /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15.1.0
7f4617beb000-7f4617de6000 ---p 000000bb 00:00 647808             /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15.1.0
7f4617de6000-7f4617de9000 r--p 000b6000 00:00 647808             /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15.1.0
7f4617de9000-7f4617dea000 rw-p 000b9000 00:00 647808             /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15.1.0
7f4617dea000-7f4617deb000 rw-p 00000000 00:00 0
7f4617df0000-7f4617df2000 r-xp 00000000 00:00 2012571            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.so
7f4617df2000-7f4617e18000 ---p 00002000 00:00 2012571            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.so
7f4617e18000-7f4617ff1000 ---p 00000028 00:00 2012571            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.so
7f4617ff1000-7f4617ff2000 r--p 00001000 00:00 2012571            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.so
7f4617ff2000-7f4617ff3000 rw-p 00002000 00:00 2012571            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.so
7f4618000000-7f4618021000 rw-p 00000000 00:00 0
7f4618021000-7f461c000000 ---p 00000000 00:00 0
7f461c000000-7f461c04b000 rw-p 00000000 00:00 0
7f461c058000-7f461c0ac000 r--s 00000000 00:00 144187             /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4
7f461c0ac000-7f461c0d0000 r--s 00000000 00:00 33454              /lib/x86_64-linux-gnu/libpthread-2.27.so
7f461c0d0000-7f461c131000 rw-p 00000000 00:00 0
7f461c140000-7f461c141000 ---p 00000000 00:00 0
7f461c141000-7f461c941000 rw-p 00000000 00:00 0
7f461c950000-7f461c956000 r-xp 00000000 00:00 142890             /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f461c956000-7f461c957000 ---p 00006000 00:00 142890             /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f461c957000-7f461cb55000 ---p 00000007 00:00 142890             /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f461cb55000-7f461cb56000 r--p 00005000 00:00 142890             /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f461cb56000-7f461cb57000 rw-p 00006000 00:00 142890             /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f461cb60000-7f461cba7000 r-xp 00000000 00:00 142895             /lib/x86_64-linux-gnu/libblkid.so.1.1.0
7f461cba7000-7f461cbad000 ---p 00047000 00:00 142895             /lib/x86_64-linux-gnu/libblkid.so.1.1.0
7f461cbad000-7f461cda7000 ---p 0000004d 00:00 142895             /lib/x86_64-linux-gnu/libblkid.so.1.1.0
7f461cda7000-7f461cdab000 r--p 00047000 00:00 142895             /lib/x86_64-linux-gnu/libblkid.so.1.1.0
7f461cdab000-7f461cdac000 rw-p 0004b000 00:00 142895             /lib/x86_64-linux-gnu/libblkid.so.1.1.0
7f461cdac000-7f461cdad000 rw-p 00000000 00:00 0
7f461cdb0000-7f461ce01000 r-xp 00000000 00:00 146446             /lib/x86_64-linux-gnu/libmount.so.1.1.0
7f461ce01000-7f461ce04000 ---p 00051000 00:00 146446             /lib/x86_64-linux-gnu/libmount.so.1.1.0
7f461ce04000-7f461d000000 ---p 00000054 00:00 146446             /lib/x86_64-linux-gnu/libmount.so.1.1.0
7f461d000000-7f461d002000 r--p 00050000 00:00 146446             /lib/x86_64-linux-gnu/libmount.so.1.1.0
7f461d002000-7f461d003000 rw-p 00052000 00:00 146446             /lib/x86_64-linux-gnu/libmount.so.1.1.0
7f461d003000-7f461d004000 rw-p 00000000 00:00 0
7f461d010000-7f461d027000 r-xp 00000000 00:00 33460              /lib/x86_64-linux-gnu/libresolv-2.27.so
7f461d027000-7f461d029000 ---p 00017000 00:00 33460              /lib/x86_64-linux-gnu/libresolv-2.27.so
7f461d029000-7f461d227000 ---p 00000019 00:00 33460              /lib/x86_64-linux-gnu/libresolv-2.27.so
7f461d227000-7f461d228000 r--p 00017000 00:00 33460              /lib/x86_64-linux-gnu/libresolv-2.27.so
7f461d228000-7f461d229000 rw-p 00018000 00:00 33460              /lib/x86_64-linux-gnu/libresolv-2.27.so
7f461d229000-7f461d22b000 rw-p 00000000 00:00 0
7f461d230000-7f461d255000 r-xp 00000000 00:00 33467              /lib/x86_64-linux-gnu/libselinux.so.1
7f461d255000-7f461d256000 ---p 00025000 00:00 33467              /lib/x86_64-linux-gnu/libselinux.so.1
7f461d256000-7f461d454000 ---p 00000026 00:00 33467              /lib/x86_64-linux-gnu/libselinux.so.1
7f461d454000-7f461d455000 r--p 00024000 00:00 33467              /lib/x86_64-linux-gnu/libselinux.so.1
7f461d455000-7f461d456000 rw-p 00025000 00:00 33467              /lib/x86_64-linux-gnu/libselinux.so.1
7f461d456000-7f461d458000 rw-p 00000000 00:00 0
7f461d460000-7f461d5f5000 r-xp 00000000 00:00 144184             /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4
7f461d5f5000-7f461d5fd000 ---p 00195000 00:00 144184             /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4
7f461d5fd000-7f461d7f5000 ---p 0000019d 00:00 144184             /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4
7f461d7f5000-7f461d7fc000 r--p 00195000 00:00 144184             /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4
7f461d7fc000-7f461d7fd000 rw-p 0019c000 00:00 144184             /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4
7f461d7fd000-7f461d7ff000 rw-p 00000000 00:00 0
7f461d800000-7f461d803000 r-xp 00000000 00:00 144186             /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4
7f461d803000-7f461d804000 ---p 00003000 00:00 144186             /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4
7f461d804000-7f461da02000 ---p 00000004 00:00 144186             /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4
7f461da02000-7f461da03000 r--p 00002000 00:00 144186             /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4
7f461da03000-7f461da04000 rw-p 00003000 00:00 144186             /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4
7f461da10000-7f461da43000 r-xp 00000000 00:00 137883             /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7f461da43000-7f461da44000 ---p 00033000 00:00 137883             /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7f461da44000-7f461dc42000 ---p 00000034 00:00 137883             /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7f461dc42000-7f461dc43000 r--p 00032000 00:00 137883             /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7f461dc43000-7f461dc44000 rw-p 00033000 00:00 137883             /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7f461dc50000-7f461dc70000 r-xp 00000000 00:00 1999784            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject_introspection.so
7f461dc70000-7f461dcc9000 ---p 00020000 00:00 1999784            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject_introspection.so
7f461dcc9000-7f461de70000 ---p 00000079 00:00 1999784            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject_introspection.so
7f461de70000-7f461de71000 r--p 00020000 00:00 1999784            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject_introspection.so
7f461de71000-7f461de72000 rw-p 00021000 00:00 1999784            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject_introspection.so
7f461de80000-7f461dee1000 rw-p 00000000 00:00 0
7f461def0000-7f461def7000 r-xp 00000000 00:00 137867             /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f461def7000-7f461def8000 ---p 00007000 00:00 137867             /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f461def8000-7f461e0f6000 ---p 00000008 00:00 137867             /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f461e0f6000-7f461e0f7000 r--p 00006000 00:00 137867             /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f461e0f7000-7f461e0f8000 rw-p 00007000 00:00 137867             /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f461e100000-7f461e170000 r-xp 00000000 00:00 33443              /lib/x86_64-linux-gnu/libpcre.so.3.13.3
7f461e170000-7f461e172000 ---p 00070000 00:00 33443              /lib/x86_64-linux-gnu/libpcre.so.3.13.3
7f461e172000-7f461e370000 ---p 00000072 00:00 33443              /lib/x86_64-linux-gnu/libpcre.so.3.13.3
7f461e370000-7f461e371000 r--p 00070000 00:00 33443              /lib/x86_64-linux-gnu/libpcre.so.3.13.3
7f461e371000-7f461e372000 rw-p 00071000 00:00 33443              /lib/x86_64-linux-gnu/libpcre.so.3.13.3
7f461e380000-7f461e3d2000 r-xp 00000000 00:00 144187             /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4
7f461e3d2000-7f461e3d4000 ---p 00052000 00:00 144187             /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4
7f461e3d4000-7f461e5d2000 ---p 00000054 00:00 144187             /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4
7f461e5d2000-7f461e5d3000 r--p 00052000 00:00 144187             /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4
7f461e5d3000-7f461e5d4000 rw-p 00053000 00:00 144187             /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4
7f461e5e0000-7f461e6f4000 r-xp 00000000 00:00 144185             /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4
7f461e6f4000-7f461e6f6000 ---p 00114000 00:00 144185             /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4
7f461e6f6000-7f461e8f4000 ---p 00000116 00:00 144185             /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4
7f461e8f4000-7f461e8f5000 r--p 00114000 00:00 144185             /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4
7f461e8f5000-7f461e8f6000 rw-p 00115000 00:00 144185             /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4
7f461e8f6000-7f461e8f7000 rw-p 00000000 00:00 0
7f461e900000-7f461e95b000 r-xp 00000000 00:00 1661697            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
7f461e95b000-7f461ea11000 ---p 0005b000 00:00 1661697            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
7f461ea11000-7f461eb5b000 ---p 00000111 00:00 1661697            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
7f461eb5b000-7f461eb60000 r--p 0005b000 00:00 1661697            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
7f461eb60000-7f461eb62000 rw-p 00060000 00:00 1661697            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
7f461eb62000-7f461eb63000 rw-p 00000000 00:00 0
7f461eb70000-7f461eb78000 r-xp 00000000 00:00 737330             /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f461eb78000-7f461eb93000 ---p 00008000 00:00 737330             /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f461eb93000-7f461ed77000 ---p 00000023 00:00 737330             /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f461ed77000-7f461ed78000 r--p 00007000 00:00 737330             /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f461ed78000-7f461ed79000 rw-p 00008000 00:00 737330             /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f461ed80000-7f461ed89000 r-xp 00000000 00:00 737334             /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f461ed89000-7f461eda6000 ---p 00009000 00:00 737334             /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f461eda6000-7f461ef88000 ---p 00000026 00:00 737334             /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f461ef88000-7f461ef89000 r--p 00008000 00:00 737334             /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f461ef89000-7f461ef8a000 rw-p 00009000 00:00 737334             /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f461ef90000-7f461ef92000 r-xp 00000000 00:00 688271             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f461ef92000-7f461ef96000 ---p 00002000 00:00 688271             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f461ef96000-7f461f192000 ---p 00000006 00:00 688271             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f461f192000-7f461f193000 r--p 00002000 00:00 688271             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f461f193000-7f461f194000 rw-p 00003000 00:00 688271             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f461f1a0000-7f461f1a2000 r-xp 00000000 00:00 688267             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f461f1a2000-7f461f1b4000 ---p 00002000 00:00 688267             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f461f1b4000-7f461f3a1000 ---p 00000014 00:00 688267             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f461f3a1000-7f461f3a2000 r--p 00001000 00:00 688267             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f461f3a2000-7f461f3a3000 rw-p 00002000 00:00 688267             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f461f3b0000-7f46213b9000 rw-p 00000000 00:00 0
7f46213c0000-7f46215a7000 r-xp 00000000 00:00 33307              /lib/x86_64-linux-gnu/libc-2.27.so
7f46215a7000-7f46215b0000 ---p 001e7000 00:00 33307              /lib/x86_64-linux-gnu/libc-2.27.so
7f46215b0000-7f46217a7000 ---p 000001f0 00:00 33307              /lib/x86_64-linux-gnu/libc-2.27.so
7f46217a7000-7f46217ab000 r--p 001e7000 00:00 33307              /lib/x86_64-linux-gnu/libc-2.27.so
7f46217ab000-7f46217ad000 rw-p 001eb000 00:00 33307              /lib/x86_64-linux-gnu/libc-2.27.so
7f46217ad000-7f46217b1000 rw-p 00000000 00:00 0
7f46217c0000-7f462195d000 r-xp 00000000 00:00 33383              /lib/x86_64-linux-gnu/libm-2.27.so
7f462195d000-7f4621960000 ---p 0019d000 00:00 33383              /lib/x86_64-linux-gnu/libm-2.27.so
7f4621960000-7f4621b5c000 ---p 000001a0 00:00 33383              /lib/x86_64-linux-gnu/libm-2.27.so
7f4621b5c000-7f4621b5d000 r--p 0019c000 00:00 33383              /lib/x86_64-linux-gnu/libm-2.27.so
7f4621b5d000-7f4621b5e000 rw-p 0019d000 00:00 33383              /lib/x86_64-linux-gnu/libm-2.27.so
7f4621b60000-7f4621b69000 r-xp 00000000 00:00 33317              /lib/x86_64-linux-gnu/libcrypt-2.27.so
7f4621b69000-7f4621b6a000 ---p 00009000 00:00 33317              /lib/x86_64-linux-gnu/libcrypt-2.27.so
7f4621b6a000-7f4621d68000 ---p 0000000a 00:00 33317              /lib/x86_64-linux-gnu/libcrypt-2.27.so
7f4621d68000-7f4621d69000 r--p 00008000 00:00 33317              /lib/x86_64-linux-gnu/libcrypt-2.27.so
7f4621d69000-7f4621d6a000 rw-p 00009000 00:00 33317              /lib/x86_64-linux-gnu/libcrypt-2.27.so
7f4621d6a000-7f4621d98000 rw-p 00000000 00:00 0
7f4621da0000-7f4621da3000 r-xp 00000000 00:00 33331              /lib/x86_64-linux-gnu/libdl-2.27.so
7f4621da3000-7f4621da4000 ---p 00003000 00:00 33331              /lib/x86_64-linux-gnu/libdl-2.27.so
7f4621da4000-7f4621fa2000 ---p 00000004 00:00 33331              /lib/x86_64-linux-gnu/libdl-2.27.so
7f4621fa2000-7f4621fa3000 r--p 00002000 00:00 33331              /lib/x86_64-linux-gnu/libdl-2.27.so
7f4621fa3000-7f4621fa4000 rw-p 00003000 00:00 33331              /lib/x86_64-linux-gnu/libdl-2.27.so
7f4621fb0000-7f4621fb7000 r-xp 00000000 00:00 33463              /lib/x86_64-linux-gnu/librt-2.27.so
7f4621fb7000-7f4621fb8000 ---p 00007000 00:00 33463              /lib/x86_64-linux-gnu/librt-2.27.so
7f4621fb8000-7f46221b6000 ---p 00000008 00:00 33463              /lib/x86_64-linux-gnu/librt-2.27.so
7f46221b6000-7f46221b7000 r--p 00006000 00:00 33463              /lib/x86_64-linux-gnu/librt-2.27.so
7f46221b7000-7f46221b8000 rw-p 00007000 00:00 33463              /lib/x86_64-linux-gnu/librt-2.27.so
7f46221c0000-7f46221da000 r-xp 00000000 00:00 33454              /lib/x86_64-linux-gnu/libpthread-2.27.so
7f46221da000-7f46221e4000 ---p 0001a000 00:00 33454              /lib/x86_64-linux-gnu/libpthread-2.27.so
7f46221e4000-7f46223d9000 ---p 00000024 00:00 33454              /lib/x86_64-linux-gnu/libpthread-2.27.so
7f46223d9000-7f46223da000 r--p 00019000 00:00 33454              /lib/x86_64-linux-gnu/libpthread-2.27.so
7f46223da000-7f46223db000 rw-p 0001a000 00:00 33454              /lib/x86_64-linux-gnu/libpthread-2.27.so
7f46223db000-7f46223df000 rw-p 00000000 00:00 0
7f46223e0000-7f46223fc000 r-xp 00000000 00:00 33495              /lib/x86_64-linux-gnu/libz.so.1.2.11
7f46223fc000-7f46223fd000 ---p 0001c000 00:00 33495              /lib/x86_64-linux-gnu/libz.so.1.2.11
7f46223fd000-7f46225fb000 ---p 0000001d 00:00 33495              /lib/x86_64-linux-gnu/libz.so.1.2.11
7f46225fb000-7f46225fc000 r--p 0001b000 00:00 33495              /lib/x86_64-linux-gnu/libz.so.1.2.11
7f46225fc000-7f46225fd000 rw-p 0001c000 00:00 33495              /lib/x86_64-linux-gnu/libz.so.1.2.11
7f4622600000-7f4622626000 r-xp 00000000 00:00 33283              /lib/x86_64-linux-gnu/ld-2.27.so
7f4622626000-7f4622627000 r-xp 00026000 00:00 33283              /lib/x86_64-linux-gnu/ld-2.27.so
7f4622639000-7f462264f000 r--p 00000000 00:00 2001779            /usr/lib/x86_64-linux-gnu/girepository-1.0/Arrow-1.0.typelib
7f462264f000-7f462267d000 r--p 00000000 00:00 137788             /usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib
7f462267d000-7f462268c000 r--p 00000000 00:00 137790             /usr/lib/x86_64-linux-gnu/girepository-1.0/GObject-2.0.typelib
7f462268c000-7f4622827000 r--p 00000000 00:00 35322              /usr/lib/locale/locale-archive
7f4622827000-7f4622828000 r--p 00027000 00:00 33283              /lib/x86_64-linux-gnu/ld-2.27.so
7f4622828000-7f4622829000 rw-p 00028000 00:00 33283              /lib/x86_64-linux-gnu/ld-2.27.so
7f4622829000-7f462282a000 rw-p 00000000 00:00 0
7f462282c000-7f4622880000 r--p 00000000 00:00 137791             /usr/lib/x86_64-linux-gnu/girepository-1.0/Gio-2.0.typelib
7f4622880000-7f4622981000 rw-p 00000000 00:00 0
7f462298f000-7f46229c0000 r--p 00000000 00:00 35311              /usr/lib/locale/C.UTF-8/LC_CTYPE
7f46229c0000-7f46229c3000 rw-p 00000000 00:00 0
7f46229d0000-7f46229d2000 rw-p 00000000 00:00 0
7f46229e0000-7f46229e2000 rw-p 00000000 00:00 0
7f46229ef000-7f46229f0000 r--p 00000000 00:00 35315              /usr/lib/locale/C.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES
7f46229f0000-7f46229f7000 r--s 00000000 00:00 137779             /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache
7f4622a00000-7f4622d78000 r-xp 00000000 00:00 453996             /usr/local/bin/ruby
7f4622d78000-7f4622d79000 r-xp 00378000 00:00 453996             /usr/local/bin/ruby
7f4622f78000-7f4622f7e000 r--p 00378000 00:00 453996             /usr/local/bin/ruby
7f4622f7e000-7f4622f7f000 rw-p 0037e000 00:00 453996             /usr/local/bin/ruby
7f4622f7f000-7f4622f90000 rw-p 00000000 00:00 0
7fffd22e4000-7fffd2ef6000 rw-p 00000000 00:00 0                  [heap]
7fffda434000-7fffdac34000 rw-p 00000000 00:00 0                  [stack]
7fffdaf55000-7fffdaf56000 r-xp 00000000 00:00 0                  [vdso]
[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
For details: https://www.ruby-lang.org/bugreport.htmll{code}

  was:
Hi, I might find a bug.

When we specify column type as time via Arrow::Table.load's column_types named argument, it causes segmentation fault:

I think Ruby's any extension libraries should not cause SEGV.
{code:java}
require "arrow"
CSV_FILE = File.join(__dir__, "timedata.csv")
table = Arrow::Table.load(CSV_FILE, column_types: [["datetime", :time]]{code}
{code:java}
% ruby -v ./timedata.rb
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/data-type.rb:88: [BUG] Segmentation fault at 0x0000000000000008
ruby 2.6.5p114 (2019-10-01 revision 67812) [x86_64-linux]-- Control frame information -----------------------------------------------
c:0018 p:---- s:0097 e:000096 CFUNC  :initialize
c:0017 p:---- s:0094 e:000093 CFUNC  :new
c:0016 p:0125 s:0090 e:000089 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/data-type.rb:88
c:0015 p:0015 s:0080 e:000077 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-read-options.rb:22
c:0014 p:0011 s:0072 e:000071 BLOCK  /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:110 [FINISH]
c:0013 p:---- s:0067 e:000066 CFUNC  :each
c:0012 p:0161 s:0063 e:000062 BLOCK  /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:109 [FINISH]
c:0011 p:---- s:0057 e:000056 CFUNC  :each
c:0010 p:0019 s:0053 e:000052 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:93
c:0009 p:0004 s:0048 e:000047 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:160
c:0008 p:0042 s:0042 e:000041 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:39
c:0007 p:0018 s:0038 e:000037 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:26
c:0006 p:0078 s:0032 e:000031 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb:152
c:0005 p:0139 s:0027 e:000026 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb:50
c:0004 p:0015 s:0019 e:000018 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb:22
c:0003 p:0018 s:0013 e:000012 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table.rb:29
c:0002 p:0054 s:0007 E:0006f8 EVAL   ./timedata.rb:5 [FINISH]
c:0001 p:0000 s:0003 E:002070 (none) [FINISH]-- Ruby level backtrace information ----------------------------------------
./timedata.rb:5:in `<main>'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table.rb:29:in `load'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb:22:in `load'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb:50:in `load'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb:152:in `load_as_csv'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:26:in `load'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:39:in `load'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:160:in `load_from_path'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:93:in `reader_options'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:93:in `each'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:109:in `block in reader_options'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:109:in `each'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:110:in `block (2 levels) in reader_options'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-read-options.rb:22:in `add_column_type'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/data-type.rb:88:in `resolve'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/data-type.rb:88:in `new'
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/data-type.rb:88:in `initialize'-- Machine register context ------------------------------------------------
 RIP: 0x00007f4617b82f1e RBP: 0x00007fffd292f670 RSP: 0x00007fffdac318c0
 RAX: 0x0000000000000000 RBX: 0x00007fffd292f660 RCX: 0x0000000000000001
 RDX: 0x0000000000000001 RDI: 0x00007fffdac31940 RSI: 0x00007fffd2cc8640
  R8: 0x00007fffd2cc8640  R9: 0x0000000000000001 R10: 0x0000000000000032
 R11: 0x00007f461e3bc6f0 R12: 0x0000000000000000 R13: 0x00007fffdac31940
 R14: 0x00007fffd2cc8b00 R15: 0x00007fffd2b75590 EFL: 0x0000000000010246-- C level backtrace information -------------------------------------------
/usr/local/bin/ruby(rb_vm_bugreport+0x7d3) [0x7f4622c89493] vm_dump.c:715
/usr/local/bin/ruby(rb_bug_context+0xe4) [0x7f4622c7c4f4] error.c:609
/usr/local/bin/ruby(sigsegv+0x42) [0x7f4622b4d832] signal.c:998
/lib/x86_64-linux-gnu/libpthread.so.0(__restore_rt+0x0) [0x7f46221d2890]
/usr/lib/x86_64-linux-gnu/libarrow-glib.so.15(0x7f4617b82f1e) [0x7f4617b82f1e]
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0(0x7f461e395a7a) [0x7f461e395a7a]
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0(g_object_newv+0x2ad) [0x7f461e3971bd]
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so(rbgobj_gobject_new+0x11c) [0x7f461e9392bc] rbgobj_object.c:397
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so(rbgobj_gobject_new) (null):0
/home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so(rg_initialize+0x12b) [0x7f461e93942b] rbgobj_object.c:867
/usr/local/bin/ruby(vm_call0_body+0x2d8) [0x7f4622bd48e8] vm_eval.c:86
/usr/local/bin/ruby(rb_vm_call0+0x35) [0x7f4622bd592f] vm_eval.c:60
/usr/local/bin/ruby(rb_call0) vm_eval.c:308
/usr/local/bin/ruby(rb_class_s_new+0x21) [0x7f4622abe811] object.c:2187
/usr/local/bin/ruby(vm_call_cfunc+0x10a) [0x7f4622bc73ea] vm_insnhelper.c:1908
/usr/local/bin/ruby(vm_call_method+0xe3) [0x7f4622bd3333] vm_insnhelper.c:2400
/usr/local/bin/ruby(vm_exec_core+0x12f) [0x7f4622bd949f] insns.def:765
/usr/local/bin/ruby(rb_vm_exec+0xac) [0x7f4622bcf85c] vm.c:1885
/usr/local/bin/ruby(rb_yield+0x18e) [0x7f4622bd045e] vm.c:1092
/usr/local/bin/ruby(rb_ary_each+0x3c) [0x7f4622bf3e0c] array.c:2087
/usr/local/bin/ruby(vm_call_cfunc+0x10a) [0x7f4622bc73ea] vm_insnhelper.c:1908
/usr/local/bin/ruby(vm_call_method+0xe3) [0x7f4622bd3333] vm_insnhelper.c:2400
/usr/local/bin/ruby(vm_exec_core+0x1d3) [0x7f4622bd9543] insns.def:750
/usr/local/bin/ruby(rb_vm_exec+0xac) [0x7f4622bcf85c] vm.c:1885
/usr/local/bin/ruby(invoke_block_from_c_bh+0x1f4) [0x7f4622bd09e4] vm.c:1092
/usr/local/bin/ruby(each_pair_i_fast+0x3b) [0x7f4622a4af9b] hash.c:2775
/usr/local/bin/ruby(hash_foreach_call+0x75) [0x7f4622a4c7d5] hash.c:1136
/usr/local/bin/ruby(rb_ensure+0xd3) [0x7f4622a2c013] eval.c:1076
/usr/local/bin/ruby(rb_hash_foreach+0x7e) [0x7f4622a5371e] hash.c:1229
/usr/local/bin/ruby(rb_hash_each_pair+0x28) [0x7f4622a540e8] hash.c:2806
/usr/local/bin/ruby(vm_call_cfunc+0x10a) [0x7f4622bc73ea] vm_insnhelper.c:1908
/usr/local/bin/ruby(vm_call_method+0xe3) [0x7f4622bd3333] vm_insnhelper.c:2400
/usr/local/bin/ruby(vm_exec_core+0x1d3) [0x7f4622bd9543] insns.def:750
/usr/local/bin/ruby(rb_vm_exec+0x6cf) [0x7f4622bcfe7f] vm.c:1894
/usr/local/bin/ruby(ruby_exec_internal+0xd3) [0x7f4622a26213] eval.c:262
/usr/local/bin/ruby(ruby_exec_node+0x11) [0x7f4622a2afcb] eval.c:326
/usr/local/bin/ruby(ruby_run_node) eval.c:318
/usr/local/bin/ruby(main+0x5b) [0x7f4622a25f0b] ./main.c:42-- Other runtime information -----------------------------------------------* Loaded script: ./timedata.rb* Loaded features:    0 enumerator.so
    1 thread.rb
    2 rational.so
    3 complex.so
    4 /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
    5 /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
    6 /usr/local/lib/ruby/2.6.0/x86_64-linux/rbconfig.rb
    7 /usr/local/lib/ruby/2.6.0/rubygems/compatibility.rb
    8 /usr/local/lib/ruby/2.6.0/rubygems/defaults.rb
    9 /usr/local/lib/ruby/2.6.0/rubygems/deprecate.rb
   10 /usr/local/lib/ruby/2.6.0/rubygems/errors.rb
   11 /usr/local/lib/ruby/2.6.0/rubygems/version.rb
   12 /usr/local/lib/ruby/2.6.0/rubygems/requirement.rb
   13 /usr/local/lib/ruby/2.6.0/rubygems/platform.rb
   14 /usr/local/lib/ruby/2.6.0/rubygems/basic_specification.rb
   15 /usr/local/lib/ruby/2.6.0/rubygems/stub_specification.rb
   16 /usr/local/lib/ruby/2.6.0/delegate.rb
   17 /usr/local/lib/ruby/2.6.0/uri/rfc2396_parser.rb
   18 /usr/local/lib/ruby/2.6.0/uri/rfc3986_parser.rb
   19 /usr/local/lib/ruby/2.6.0/uri/common.rb
   20 /usr/local/lib/ruby/2.6.0/uri/generic.rb
   21 /usr/local/lib/ruby/2.6.0/uri/file.rb
   22 /usr/local/lib/ruby/2.6.0/uri/ftp.rb
   23 /usr/local/lib/ruby/2.6.0/uri/http.rb
   24 /usr/local/lib/ruby/2.6.0/uri/https.rb
   25 /usr/local/lib/ruby/2.6.0/uri/ldap.rb
   26 /usr/local/lib/ruby/2.6.0/uri/ldaps.rb
   27 /usr/local/lib/ruby/2.6.0/uri/mailto.rb
   28 /usr/local/lib/ruby/2.6.0/uri.rb
   29 /usr/local/lib/ruby/2.6.0/rubygems/specification_policy.rb
   30 /usr/local/lib/ruby/2.6.0/rubygems/util/list.rb
   31 /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
   32 /usr/local/lib/ruby/2.6.0/rubygems/specification.rb
   33 /usr/local/lib/ruby/2.6.0/rubygems/exceptions.rb
   34 /usr/local/lib/ruby/2.6.0/rubygems/util.rb
   35 /usr/local/lib/ruby/2.6.0/rubygems/bundler_version_finder.rb
   36 /usr/local/lib/ruby/2.6.0/rubygems/dependency.rb
   37 /usr/local/lib/ruby/2.6.0/rubygems/core_ext/kernel_gem.rb
   38 /usr/local/lib/ruby/2.6.0/monitor.rb
   39 /usr/local/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb
   40 /usr/local/lib/ruby/2.6.0/rubygems/core_ext/kernel_warn.rb
   41 /usr/local/lib/ruby/2.6.0/rubygems.rb
   42 /usr/local/lib/ruby/2.6.0/rubygems/path_support.rb
   43 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/version.rb
   44 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/core_ext/name_error.rb
   45 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/levenshtein.rb
   46 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/jaro_winkler.rb
   47 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checker.rb
   48 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checkers/name_error_checkers/class_name_checker.rb
   49 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checkers/name_error_checkers/variable_name_checker.rb
   50 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checkers/name_error_checkers.rb
   51 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checkers/method_name_checker.rb
   52 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checkers/key_error_checker.rb
   53 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checkers/null_checker.rb
   54 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/formatters/plain_formatter.rb
   55 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean.rb
   56 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/extpp-0.0.8/lib/extpp/setup.rb
   57 /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
   58 /usr/local/lib/ruby/2.6.0/pathname.rb
   59 /usr/local/lib/ruby/2.6.0/English.rb
   60 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2/deprecatable.rb
   61 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
   62 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2/version.rb
   63 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2/regex.rb
   64 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2/deprecated.rb
   65 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.rb
   66 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject_introspection.so
   67 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/arg-info.rb
   68 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/collection-reader.rb
   69 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/boxed-info.rb
   70 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/callable-info.rb
   71 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/function-info.rb
   72 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/interface-info.rb
   73 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/object-info.rb
   74 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/registered-type-info.rb
   75 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/repository.rb
   76 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/struct-info.rb
   77 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/type-info.rb
   78 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/type-tag.rb
   79 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/union-info.rb
   80 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/version.rb
   81 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/loader.rb
   82 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection.rb
   83 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/loader.rb
   84 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.so
   85 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/action.rb
   86 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/action-map.rb
   87 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/application-command-line.rb
   88 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/content-type.rb
   89 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/file.rb
   90 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/icon.rb
   91 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/inet-address.rb
   92 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/input-stream.rb
   93 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/menu-item.rb
   94 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/pollable-input-stream.rb
   95 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/pollable-output-stream.rb
   96 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/resources.rb
   97 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/settings.rb
   98 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/settings-schema-source.rb
   99 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/simple-action.rb
  100 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/deprecated.rb
  101 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.rb
  102 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/version.rb
  103 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/block-closable.rb
  104 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/loader.rb
  105 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/array.rb
  106 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date_core.so
  107 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date.rb
  108 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/array-builder.rb
  109 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/binary-array-builder.rb
  110 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/chunked-array.rb
  111 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/column.rb
  112 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/compression-type.rb
  113 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/forwardable-1.3.1/lib/forwardable/impl.rb
  114 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/forwardable-1.3.1/lib/forwardable/version.rb
  115 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/forwardable-1.3.1/lib/forwardable.rb
  116 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/fields_converter.rb
  117 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/match_p.rb
  118 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/strscan-1.0.3/lib/strscan.so
  119 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/delete_suffix.rb
  120 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/row.rb
  121 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/table.rb
  122 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/parser.rb
  123 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/writer.rb
  124 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/version.rb
  125 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/core_ext/array.rb
  126 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/core_ext/string.rb
  127 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv.rb
  128 /usr/local/lib/ruby/2.6.0/time.rb
  129 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb
  130 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-read-options.rb
  131 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/data-type.rb
  132 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/date32-array.rb
  133 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/date32-array-builder.rb
  134 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/date64-array.rb
  135 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/date64-array-builder.rb
  136 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/decimal128.rb
  137 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/decimal128-array.rb
  138 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.so
  139 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.rb
  140 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/bigdecimal-extension.rb
  141 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/decimal128-array-builder.rb
  142 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/decimal128-data-type.rb
  143 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/dense-union-data-type.rb
  144 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/dictionary-data-type.rb
  145 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/field.rb
  146 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/file-output-stream.rb
  147 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/list-array-builder.rb
  148 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/list-data-type.rb
  149 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/null-array-builder.rb
  150 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/path-extension.rb
  151 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/record.rb
  152 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/column-containable.rb
  153 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/record-containable.rb
  154 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/record-batch.rb
  155 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/record-batch-builder.rb
  156 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/record-batch-file-reader.rb
  157 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/record-batch-stream-reader.rb
  158 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/rolling-window.rb
  159 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/field-containable.rb
  160 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/schema.rb
  161 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/slicer.rb
  162 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/sparse-union-data-type.rb
  163 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/struct-array.rb
  164 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/struct-array-builder.rb
  165 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/struct-data-type.rb
  166 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/group.rb
  167 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table.rb
  168 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-formatter.rb
  169 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-list-formatter.rb
  170 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-table-formatter.rb
  171 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb
  172 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-saver.rb
  173 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/tensor.rb
  174 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time.rb
  175 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time32-array.rb
  176 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time32-array-builder.rb
  177 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time32-data-type.rb
  178 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time64-array.rb
  179 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time64-array-builder.rb
  180 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time64-data-type.rb
  181 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/timestamp-array.rb
  182 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/timestamp-array-builder.rb
  183 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/timestamp-data-type.rb
  184 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/writable.rb
  185 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.so
  186 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.rb* Process memory map:7f460c000000-7f460c021000 rw-p 00000000 00:00 0
7f460c021000-7f4610000000 ---p 00000000 00:00 0
7f46117b0000-7f46119a0000 r--s 00000000 00:00 33307              /lib/x86_64-linux-gnu/libc-2.27.so
7f46119a0000-7f46119ea000 rw-p 00000000 00:00 0
7f46119ee000-7f4611aff000 r--s 00000000 00:00 1661697            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
7f4611aff000-7f4612d50000 r--s 00000000 00:00 453996             /usr/local/bin/ruby
7f4612d50000-7f4612d56000 r-xp 00000000 00:00 1659347            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/extpp-0.0.8/ext/extpp/libruby-extpp.so
7f4612d56000-7f4612d88000 ---p 00006000 00:00 1659347            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/extpp-0.0.8/ext/extpp/libruby-extpp.so
7f4612d88000-7f4612f55000 ---p 00000038 00:00 1659347            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/extpp-0.0.8/ext/extpp/libruby-extpp.so
7f4612f55000-7f4612f56000 r--p 00005000 00:00 1659347            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/extpp-0.0.8/ext/extpp/libruby-extpp.so
7f4612f56000-7f4612f57000 rw-p 00006000 00:00 1659347            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/extpp-0.0.8/ext/extpp/libruby-extpp.so
7f4612f60000-7f4612f78000 r-xp 00000000 00:00 2006190            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.so
7f4612f78000-7f4613017000 ---p 00018000 00:00 2006190            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.so
7f4613017000-7f4613178000 ---p 000000b7 00:00 2006190            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.so
7f4613178000-7f4613179000 r--p 00018000 00:00 2006190            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.so
7f4613179000-7f461317a000 rw-p 00019000 00:00 2006190            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.so
7f4613180000-7f4613195000 r-xp 00000000 00:00 279300             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.so
7f4613195000-7f46131be000 ---p 00015000 00:00 279300             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.so
7f46131be000-7f4613394000 ---p 0000003e 00:00 279300             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.so
7f4613394000-7f4613395000 r--p 00014000 00:00 279300             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.so
7f4613395000-7f4613396000 rw-p 00015000 00:00 279300             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.so
7f46133a0000-7f46133a8000 r-xp 00000000 00:00 428789             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/strscan-1.0.3/lib/strscan.so
7f46133a8000-7f46133c2000 ---p 00008000 00:00 428789             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/strscan-1.0.3/lib/strscan.so
7f46133c2000-7f46135a7000 ---p 00000022 00:00 428789             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/strscan-1.0.3/lib/strscan.so
7f46135a7000-7f46135a8000 r--p 00007000 00:00 428789             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/strscan-1.0.3/lib/strscan.so
7f46135a8000-7f46135a9000 rw-p 00008000 00:00 428789             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/strscan-1.0.3/lib/strscan.so
7f46135b0000-7f46135e5000 r-xp 00000000 00:00 656316             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date_core.so
7f46135e5000-7f4613641000 ---p 00035000 00:00 656316             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date_core.so
7f4613641000-7f46137e4000 ---p 00000091 00:00 656316             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date_core.so
7f46137e4000-7f46137e5000 r--p 00034000 00:00 656316             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date_core.so
7f46137e5000-7f46137e6000 rw-p 00035000 00:00 656316             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date_core.so
7f46137e6000-7f46137e7000 rw-p 00000000 00:00 0
7f46137f0000-7f46137f1000 ---p 00000000 00:00 0
7f46137f1000-7f4613ff1000 rw-p 00000000 00:00 0
7f4614000000-7f46148c8000 rw-p 00000000 00:00 0
7f46148d5000-7f4614990000 r--s 00000000 00:00 647808             /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15.1.0
7f4614990000-7f46149b4000 r-xp 00000000 00:00 33379              /lib/x86_64-linux-gnu/liblzma.so.5.2.2
7f46149b4000-7f46149b6000 ---p 00024000 00:00 33379              /lib/x86_64-linux-gnu/liblzma.so.5.2.2
7f46149b6000-7f4614bb4000 ---p 00000026 00:00 33379              /lib/x86_64-linux-gnu/liblzma.so.5.2.2
7f4614bb4000-7f4614bb5000 r--p 00024000 00:00 33379              /lib/x86_64-linux-gnu/liblzma.so.5.2.2
7f4614bb5000-7f4614bb6000 rw-p 00025000 00:00 33379              /lib/x86_64-linux-gnu/liblzma.so.5.2.2
7f4614bc0000-7f4614bcc000 r-xp 00000000 00:00 138042             /usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1
7f4614bcc000-7f4614bcd000 ---p 0000c000 00:00 138042             /usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1
7f4614bcd000-7f4614dcb000 ---p 0000000d 00:00 138042             /usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1
7f4614dcb000-7f4614dcc000 r--p 0000b000 00:00 138042             /usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1
7f4614dcc000-7f4614dcd000 rw-p 0000c000 00:00 138042             /usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1
7f4614dcd000-7f4614ddb000 rw-p 00000000 00:00 0
7f4614de0000-7f4614e04000 r-xp 00000000 00:00 2002700            /usr/lib/x86_64-linux-gnu/libgflags.so.2.2.1
7f4614e04000-7f4614e05000 ---p 00024000 00:00 2002700            /usr/lib/x86_64-linux-gnu/libgflags.so.2.2.1
7f4614e05000-7f4615003000 ---p 00000025 00:00 2002700            /usr/lib/x86_64-linux-gnu/libgflags.so.2.2.1
7f4615003000-7f4615004000 r--p 00023000 00:00 2002700            /usr/lib/x86_64-linux-gnu/libgflags.so.2.2.1
7f4615004000-7f4615005000 rw-p 00024000 00:00 2002700            /usr/lib/x86_64-linux-gnu/libgflags.so.2.2.1
7f4615010000-7f461502f000 r-xp 00000000 00:00 2002028            /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.4
7f461502f000-7f4615030000 ---p 0001f000 00:00 2002028            /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.4
7f4615030000-7f461522e000 ---p 00000020 00:00 2002028            /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.4
7f461522e000-7f461522f000 r--p 0001e000 00:00 2002028            /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.4
7f461522f000-7f4615230000 rw-p 0001f000 00:00 2002028            /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.4
7f4615230000-7f4615234000 r-xp 00000000 00:00 2001795            /usr/lib/x86_64-linux-gnu/libboost_system.so.1.65.1
7f4615234000-7f4615235000 ---p 00004000 00:00 2001795            /usr/lib/x86_64-linux-gnu/libboost_system.so.1.65.1
7f4615235000-7f4615433000 ---p 00000005 00:00 2001795            /usr/lib/x86_64-linux-gnu/libboost_system.so.1.65.1
7f4615433000-7f4615434000 r--p 00003000 00:00 2001795            /usr/lib/x86_64-linux-gnu/libboost_system.so.1.65.1
7f4615434000-7f4615435000 rw-p 00004000 00:00 2001795            /usr/lib/x86_64-linux-gnu/libboost_system.so.1.65.1
7f4615440000-7f4615459000 r-xp 00000000 00:00 2001919            /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.65.1
7f4615459000-7f461545a000 ---p 00019000 00:00 2001919            /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.65.1
7f461545a000-7f4615658000 ---p 0000001a 00:00 2001919            /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.65.1
7f4615658000-7f4615659000 r--p 00018000 00:00 2001919            /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.65.1
7f4615659000-7f461565a000 rw-p 00019000 00:00 2001919            /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.65.1
7f4615660000-7f46156da000 r-xp 00000000 00:00 137406             /usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3
7f46156da000-7f46156db000 ---p 0007a000 00:00 137406             /usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3
7f46156db000-7f46158d9000 ---p 0000007b 00:00 137406             /usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3
7f46158d9000-7f46158da000 r--p 00079000 00:00 137406             /usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3
7f46158da000-7f46158db000 rw-p 0007a000 00:00 137406             /usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3
7f46158e0000-7f46158e7000 r-xp 00000000 00:00 1001124            /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.7
7f46158e7000-7f46158e8000 ---p 00007000 00:00 1001124            /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.7
7f46158e8000-7f4615ae6000 ---p 00000008 00:00 1001124            /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.7
7f4615ae6000-7f4615ae7000 r--p 00006000 00:00 1001124            /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.7
7f4615ae7000-7f4615ae8000 rw-p 00007000 00:00 1001124            /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.7
7f4615af0000-7f4615b0b000 r-xp 00000000 00:00 137962             /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1
7f4615b0b000-7f4615b0c000 ---p 0001b000 00:00 137962             /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1
7f4615b0c000-7f4615d0a000 ---p 0000001c 00:00 137962             /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1
7f4615d0a000-7f4615d0b000 r--p 0001a000 00:00 137962             /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1
7f4615d0b000-7f4615d0c000 rw-p 0001b000 00:00 137962             /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1
7f4615d10000-7f4615d2f000 r-xp 00000000 00:00 2003623            /usr/lib/x86_64-linux-gnu/libglog.so.0.0.0
7f4615d2f000-7f4615d31000 ---p 0001f000 00:00 2003623            /usr/lib/x86_64-linux-gnu/libglog.so.0.0.0
7f4615d31000-7f4615f2f000 ---p 00000021 00:00 2003623            /usr/lib/x86_64-linux-gnu/libglog.so.0.0.0
7f4615f2f000-7f4615f30000 r--p 0001f000 00:00 2003623            /usr/lib/x86_64-linux-gnu/libglog.so.0.0.0
7f4615f30000-7f4615f31000 rw-p 00020000 00:00 2003623            /usr/lib/x86_64-linux-gnu/libglog.so.0.0.0
7f4615f31000-7f4615f41000 rw-p 00000000 00:00 0
7f4615f50000-7f4615f5b000 r-xp 00000000 00:00 2002035            /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.4
7f4615f5b000-7f4615f5c000 ---p 0000b000 00:00 2002035            /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.4
7f4615f5c000-7f461615a000 ---p 0000000c 00:00 2002035            /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.4
7f461615a000-7f461615b000 r--p 0000a000 00:00 2002035            /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.4
7f461615b000-7f461615c000 rw-p 0000b000 00:00 2002035            /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.4
7f4616160000-7f46161e6000 r-xp 00000000 00:00 2002185            /usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.4
7f46161e6000-7f46161e7000 ---p 00086000 00:00 2002185            /usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.4
7f46161e7000-7f46163e5000 ---p 00000087 00:00 2002185            /usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.4
7f46163e5000-7f46163e6000 r--p 00085000 00:00 2002185            /usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.4
7f46163e6000-7f46163e7000 rw-p 00086000 00:00 2002185            /usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.4
7f46163f0000-7f4616400000 r-xp 00000000 00:00 2002344            /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.1.0
7f4616400000-7f4616401000 ---p 00010000 00:00 2002344            /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.1.0
7f4616401000-7f46165ff000 ---p 00000011 00:00 2002344            /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.1.0
7f46165ff000-7f4616600000 r--p 0000f000 00:00 2002344            /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.1.0
7f4616600000-7f4616601000 rw-p 00010000 00:00 2002344            /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.1.0
7f4616610000-7f4616627000 r-xp 00000000 00:00 34041              /lib/x86_64-linux-gnu/libgcc_s.so.1
7f4616627000-7f4616628000 ---p 00017000 00:00 34041              /lib/x86_64-linux-gnu/libgcc_s.so.1
7f4616628000-7f4616826000 ---p 00000018 00:00 34041              /lib/x86_64-linux-gnu/libgcc_s.so.1
7f4616826000-7f4616827000 r--p 00016000 00:00 34041              /lib/x86_64-linux-gnu/libgcc_s.so.1
7f4616827000-7f4616828000 rw-p 00017000 00:00 34041              /lib/x86_64-linux-gnu/libgcc_s.so.1
7f4616830000-7f46169a9000 r-xp 00000000 00:00 34137              /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f46169a9000-7f46169b6000 ---p 00179000 00:00 34137              /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f46169b6000-7f4616ba9000 ---p 00000186 00:00 34137              /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f4616ba9000-7f4616bb3000 r--p 00179000 00:00 34137              /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f4616bb3000-7f4616bb5000 rw-p 00183000 00:00 34137              /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f4616bb5000-7f4616bb9000 rw-p 00000000 00:00 0
7f4616bc0000-7f46176da000 r-xp 00000000 00:00 2003880            /usr/lib/x86_64-linux-gnu/libarrow.so.15.1.0
7f46176da000-7f4617717000 ---p 00b1a000 00:00 2003880            /usr/lib/x86_64-linux-gnu/libarrow.so.15.1.0
7f4617717000-7f46178d9000 ---p 00000b57 00:00 2003880            /usr/lib/x86_64-linux-gnu/libarrow.so.15.1.0
7f46178d9000-7f4617913000 r--p 00b19000 00:00 2003880            /usr/lib/x86_64-linux-gnu/libarrow.so.15.1.0
7f4617913000-7f4617916000 rw-p 00b53000 00:00 2003880            /usr/lib/x86_64-linux-gnu/libarrow.so.15.1.0
7f4617916000-7f4617b2b000 rw-p 00000000 00:00 0
7f4617b30000-7f4617be7000 r-xp 00000000 00:00 647808             /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15.1.0
7f4617be7000-7f4617beb000 ---p 000b7000 00:00 647808             /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15.1.0
7f4617beb000-7f4617de6000 ---p 000000bb 00:00 647808             /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15.1.0
7f4617de6000-7f4617de9000 r--p 000b6000 00:00 647808             /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15.1.0
7f4617de9000-7f4617dea000 rw-p 000b9000 00:00 647808             /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15.1.0
7f4617dea000-7f4617deb000 rw-p 00000000 00:00 0
7f4617df0000-7f4617df2000 r-xp 00000000 00:00 2012571            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.so
7f4617df2000-7f4617e18000 ---p 00002000 00:00 2012571            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.so
7f4617e18000-7f4617ff1000 ---p 00000028 00:00 2012571            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.so
7f4617ff1000-7f4617ff2000 r--p 00001000 00:00 2012571            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.so
7f4617ff2000-7f4617ff3000 rw-p 00002000 00:00 2012571            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.so
7f4618000000-7f4618021000 rw-p 00000000 00:00 0
7f4618021000-7f461c000000 ---p 00000000 00:00 0
7f461c000000-7f461c04b000 rw-p 00000000 00:00 0
7f461c058000-7f461c0ac000 r--s 00000000 00:00 144187             /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4
7f461c0ac000-7f461c0d0000 r--s 00000000 00:00 33454              /lib/x86_64-linux-gnu/libpthread-2.27.so
7f461c0d0000-7f461c131000 rw-p 00000000 00:00 0
7f461c140000-7f461c141000 ---p 00000000 00:00 0
7f461c141000-7f461c941000 rw-p 00000000 00:00 0
7f461c950000-7f461c956000 r-xp 00000000 00:00 142890             /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f461c956000-7f461c957000 ---p 00006000 00:00 142890             /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f461c957000-7f461cb55000 ---p 00000007 00:00 142890             /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f461cb55000-7f461cb56000 r--p 00005000 00:00 142890             /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f461cb56000-7f461cb57000 rw-p 00006000 00:00 142890             /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f461cb60000-7f461cba7000 r-xp 00000000 00:00 142895             /lib/x86_64-linux-gnu/libblkid.so.1.1.0
7f461cba7000-7f461cbad000 ---p 00047000 00:00 142895             /lib/x86_64-linux-gnu/libblkid.so.1.1.0
7f461cbad000-7f461cda7000 ---p 0000004d 00:00 142895             /lib/x86_64-linux-gnu/libblkid.so.1.1.0
7f461cda7000-7f461cdab000 r--p 00047000 00:00 142895             /lib/x86_64-linux-gnu/libblkid.so.1.1.0
7f461cdab000-7f461cdac000 rw-p 0004b000 00:00 142895             /lib/x86_64-linux-gnu/libblkid.so.1.1.0
7f461cdac000-7f461cdad000 rw-p 00000000 00:00 0
7f461cdb0000-7f461ce01000 r-xp 00000000 00:00 146446             /lib/x86_64-linux-gnu/libmount.so.1.1.0
7f461ce01000-7f461ce04000 ---p 00051000 00:00 146446             /lib/x86_64-linux-gnu/libmount.so.1.1.0
7f461ce04000-7f461d000000 ---p 00000054 00:00 146446             /lib/x86_64-linux-gnu/libmount.so.1.1.0
7f461d000000-7f461d002000 r--p 00050000 00:00 146446             /lib/x86_64-linux-gnu/libmount.so.1.1.0
7f461d002000-7f461d003000 rw-p 00052000 00:00 146446             /lib/x86_64-linux-gnu/libmount.so.1.1.0
7f461d003000-7f461d004000 rw-p 00000000 00:00 0
7f461d010000-7f461d027000 r-xp 00000000 00:00 33460              /lib/x86_64-linux-gnu/libresolv-2.27.so
7f461d027000-7f461d029000 ---p 00017000 00:00 33460              /lib/x86_64-linux-gnu/libresolv-2.27.so
7f461d029000-7f461d227000 ---p 00000019 00:00 33460              /lib/x86_64-linux-gnu/libresolv-2.27.so
7f461d227000-7f461d228000 r--p 00017000 00:00 33460              /lib/x86_64-linux-gnu/libresolv-2.27.so
7f461d228000-7f461d229000 rw-p 00018000 00:00 33460              /lib/x86_64-linux-gnu/libresolv-2.27.so
7f461d229000-7f461d22b000 rw-p 00000000 00:00 0
7f461d230000-7f461d255000 r-xp 00000000 00:00 33467              /lib/x86_64-linux-gnu/libselinux.so.1
7f461d255000-7f461d256000 ---p 00025000 00:00 33467              /lib/x86_64-linux-gnu/libselinux.so.1
7f461d256000-7f461d454000 ---p 00000026 00:00 33467              /lib/x86_64-linux-gnu/libselinux.so.1
7f461d454000-7f461d455000 r--p 00024000 00:00 33467              /lib/x86_64-linux-gnu/libselinux.so.1
7f461d455000-7f461d456000 rw-p 00025000 00:00 33467              /lib/x86_64-linux-gnu/libselinux.so.1
7f461d456000-7f461d458000 rw-p 00000000 00:00 0
7f461d460000-7f461d5f5000 r-xp 00000000 00:00 144184             /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4
7f461d5f5000-7f461d5fd000 ---p 00195000 00:00 144184             /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4
7f461d5fd000-7f461d7f5000 ---p 0000019d 00:00 144184             /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4
7f461d7f5000-7f461d7fc000 r--p 00195000 00:00 144184             /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4
7f461d7fc000-7f461d7fd000 rw-p 0019c000 00:00 144184             /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4
7f461d7fd000-7f461d7ff000 rw-p 00000000 00:00 0
7f461d800000-7f461d803000 r-xp 00000000 00:00 144186             /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4
7f461d803000-7f461d804000 ---p 00003000 00:00 144186             /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4
7f461d804000-7f461da02000 ---p 00000004 00:00 144186             /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4
7f461da02000-7f461da03000 r--p 00002000 00:00 144186             /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4
7f461da03000-7f461da04000 rw-p 00003000 00:00 144186             /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4
7f461da10000-7f461da43000 r-xp 00000000 00:00 137883             /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7f461da43000-7f461da44000 ---p 00033000 00:00 137883             /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7f461da44000-7f461dc42000 ---p 00000034 00:00 137883             /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7f461dc42000-7f461dc43000 r--p 00032000 00:00 137883             /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7f461dc43000-7f461dc44000 rw-p 00033000 00:00 137883             /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7f461dc50000-7f461dc70000 r-xp 00000000 00:00 1999784            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject_introspection.so
7f461dc70000-7f461dcc9000 ---p 00020000 00:00 1999784            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject_introspection.so
7f461dcc9000-7f461de70000 ---p 00000079 00:00 1999784            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject_introspection.so
7f461de70000-7f461de71000 r--p 00020000 00:00 1999784            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject_introspection.so
7f461de71000-7f461de72000 rw-p 00021000 00:00 1999784            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject_introspection.so
7f461de80000-7f461dee1000 rw-p 00000000 00:00 0
7f461def0000-7f461def7000 r-xp 00000000 00:00 137867             /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f461def7000-7f461def8000 ---p 00007000 00:00 137867             /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f461def8000-7f461e0f6000 ---p 00000008 00:00 137867             /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f461e0f6000-7f461e0f7000 r--p 00006000 00:00 137867             /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f461e0f7000-7f461e0f8000 rw-p 00007000 00:00 137867             /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f461e100000-7f461e170000 r-xp 00000000 00:00 33443              /lib/x86_64-linux-gnu/libpcre.so.3.13.3
7f461e170000-7f461e172000 ---p 00070000 00:00 33443              /lib/x86_64-linux-gnu/libpcre.so.3.13.3
7f461e172000-7f461e370000 ---p 00000072 00:00 33443              /lib/x86_64-linux-gnu/libpcre.so.3.13.3
7f461e370000-7f461e371000 r--p 00070000 00:00 33443              /lib/x86_64-linux-gnu/libpcre.so.3.13.3
7f461e371000-7f461e372000 rw-p 00071000 00:00 33443              /lib/x86_64-linux-gnu/libpcre.so.3.13.3
7f461e380000-7f461e3d2000 r-xp 00000000 00:00 144187             /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4
7f461e3d2000-7f461e3d4000 ---p 00052000 00:00 144187             /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4
7f461e3d4000-7f461e5d2000 ---p 00000054 00:00 144187             /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4
7f461e5d2000-7f461e5d3000 r--p 00052000 00:00 144187             /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4
7f461e5d3000-7f461e5d4000 rw-p 00053000 00:00 144187             /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4
7f461e5e0000-7f461e6f4000 r-xp 00000000 00:00 144185             /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4
7f461e6f4000-7f461e6f6000 ---p 00114000 00:00 144185             /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4
7f461e6f6000-7f461e8f4000 ---p 00000116 00:00 144185             /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4
7f461e8f4000-7f461e8f5000 r--p 00114000 00:00 144185             /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4
7f461e8f5000-7f461e8f6000 rw-p 00115000 00:00 144185             /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4
7f461e8f6000-7f461e8f7000 rw-p 00000000 00:00 0
7f461e900000-7f461e95b000 r-xp 00000000 00:00 1661697            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
7f461e95b000-7f461ea11000 ---p 0005b000 00:00 1661697            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
7f461ea11000-7f461eb5b000 ---p 00000111 00:00 1661697            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
7f461eb5b000-7f461eb60000 r--p 0005b000 00:00 1661697            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
7f461eb60000-7f461eb62000 rw-p 00060000 00:00 1661697            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
7f461eb62000-7f461eb63000 rw-p 00000000 00:00 0
7f461eb70000-7f461eb78000 r-xp 00000000 00:00 737330             /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f461eb78000-7f461eb93000 ---p 00008000 00:00 737330             /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f461eb93000-7f461ed77000 ---p 00000023 00:00 737330             /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f461ed77000-7f461ed78000 r--p 00007000 00:00 737330             /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f461ed78000-7f461ed79000 rw-p 00008000 00:00 737330             /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f461ed80000-7f461ed89000 r-xp 00000000 00:00 737334             /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f461ed89000-7f461eda6000 ---p 00009000 00:00 737334             /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f461eda6000-7f461ef88000 ---p 00000026 00:00 737334             /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f461ef88000-7f461ef89000 r--p 00008000 00:00 737334             /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f461ef89000-7f461ef8a000 rw-p 00009000 00:00 737334             /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f461ef90000-7f461ef92000 r-xp 00000000 00:00 688271             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f461ef92000-7f461ef96000 ---p 00002000 00:00 688271             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f461ef96000-7f461f192000 ---p 00000006 00:00 688271             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f461f192000-7f461f193000 r--p 00002000 00:00 688271             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f461f193000-7f461f194000 rw-p 00003000 00:00 688271             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f461f1a0000-7f461f1a2000 r-xp 00000000 00:00 688267             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f461f1a2000-7f461f1b4000 ---p 00002000 00:00 688267             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f461f1b4000-7f461f3a1000 ---p 00000014 00:00 688267             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f461f3a1000-7f461f3a2000 r--p 00001000 00:00 688267             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f461f3a2000-7f461f3a3000 rw-p 00002000 00:00 688267             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f461f3b0000-7f46213b9000 rw-p 00000000 00:00 0
7f46213c0000-7f46215a7000 r-xp 00000000 00:00 33307              /lib/x86_64-linux-gnu/libc-2.27.so
7f46215a7000-7f46215b0000 ---p 001e7000 00:00 33307              /lib/x86_64-linux-gnu/libc-2.27.so
7f46215b0000-7f46217a7000 ---p 000001f0 00:00 33307              /lib/x86_64-linux-gnu/libc-2.27.so
7f46217a7000-7f46217ab000 r--p 001e7000 00:00 33307              /lib/x86_64-linux-gnu/libc-2.27.so
7f46217ab000-7f46217ad000 rw-p 001eb000 00:00 33307              /lib/x86_64-linux-gnu/libc-2.27.so
7f46217ad000-7f46217b1000 rw-p 00000000 00:00 0
7f46217c0000-7f462195d000 r-xp 00000000 00:00 33383              /lib/x86_64-linux-gnu/libm-2.27.so
7f462195d000-7f4621960000 ---p 0019d000 00:00 33383              /lib/x86_64-linux-gnu/libm-2.27.so
7f4621960000-7f4621b5c000 ---p 000001a0 00:00 33383              /lib/x86_64-linux-gnu/libm-2.27.so
7f4621b5c000-7f4621b5d000 r--p 0019c000 00:00 33383              /lib/x86_64-linux-gnu/libm-2.27.so
7f4621b5d000-7f4621b5e000 rw-p 0019d000 00:00 33383              /lib/x86_64-linux-gnu/libm-2.27.so
7f4621b60000-7f4621b69000 r-xp 00000000 00:00 33317              /lib/x86_64-linux-gnu/libcrypt-2.27.so
7f4621b69000-7f4621b6a000 ---p 00009000 00:00 33317              /lib/x86_64-linux-gnu/libcrypt-2.27.so
7f4621b6a000-7f4621d68000 ---p 0000000a 00:00 33317              /lib/x86_64-linux-gnu/libcrypt-2.27.so
7f4621d68000-7f4621d69000 r--p 00008000 00:00 33317              /lib/x86_64-linux-gnu/libcrypt-2.27.so
7f4621d69000-7f4621d6a000 rw-p 00009000 00:00 33317              /lib/x86_64-linux-gnu/libcrypt-2.27.so
7f4621d6a000-7f4621d98000 rw-p 00000000 00:00 0
7f4621da0000-7f4621da3000 r-xp 00000000 00:00 33331              /lib/x86_64-linux-gnu/libdl-2.27.so
7f4621da3000-7f4621da4000 ---p 00003000 00:00 33331              /lib/x86_64-linux-gnu/libdl-2.27.so
7f4621da4000-7f4621fa2000 ---p 00000004 00:00 33331              /lib/x86_64-linux-gnu/libdl-2.27.so
7f4621fa2000-7f4621fa3000 r--p 00002000 00:00 33331              /lib/x86_64-linux-gnu/libdl-2.27.so
7f4621fa3000-7f4621fa4000 rw-p 00003000 00:00 33331              /lib/x86_64-linux-gnu/libdl-2.27.so
7f4621fb0000-7f4621fb7000 r-xp 00000000 00:00 33463              /lib/x86_64-linux-gnu/librt-2.27.so
7f4621fb7000-7f4621fb8000 ---p 00007000 00:00 33463              /lib/x86_64-linux-gnu/librt-2.27.so
7f4621fb8000-7f46221b6000 ---p 00000008 00:00 33463              /lib/x86_64-linux-gnu/librt-2.27.so
7f46221b6000-7f46221b7000 r--p 00006000 00:00 33463              /lib/x86_64-linux-gnu/librt-2.27.so
7f46221b7000-7f46221b8000 rw-p 00007000 00:00 33463              /lib/x86_64-linux-gnu/librt-2.27.so
7f46221c0000-7f46221da000 r-xp 00000000 00:00 33454              /lib/x86_64-linux-gnu/libpthread-2.27.so
7f46221da000-7f46221e4000 ---p 0001a000 00:00 33454              /lib/x86_64-linux-gnu/libpthread-2.27.so
7f46221e4000-7f46223d9000 ---p 00000024 00:00 33454              /lib/x86_64-linux-gnu/libpthread-2.27.so
7f46223d9000-7f46223da000 r--p 00019000 00:00 33454              /lib/x86_64-linux-gnu/libpthread-2.27.so
7f46223da000-7f46223db000 rw-p 0001a000 00:00 33454              /lib/x86_64-linux-gnu/libpthread-2.27.so
7f46223db000-7f46223df000 rw-p 00000000 00:00 0
7f46223e0000-7f46223fc000 r-xp 00000000 00:00 33495              /lib/x86_64-linux-gnu/libz.so.1.2.11
7f46223fc000-7f46223fd000 ---p 0001c000 00:00 33495              /lib/x86_64-linux-gnu/libz.so.1.2.11
7f46223fd000-7f46225fb000 ---p 0000001d 00:00 33495              /lib/x86_64-linux-gnu/libz.so.1.2.11
7f46225fb000-7f46225fc000 r--p 0001b000 00:00 33495              /lib/x86_64-linux-gnu/libz.so.1.2.11
7f46225fc000-7f46225fd000 rw-p 0001c000 00:00 33495              /lib/x86_64-linux-gnu/libz.so.1.2.11
7f4622600000-7f4622626000 r-xp 00000000 00:00 33283              /lib/x86_64-linux-gnu/ld-2.27.so
7f4622626000-7f4622627000 r-xp 00026000 00:00 33283              /lib/x86_64-linux-gnu/ld-2.27.so
7f4622639000-7f462264f000 r--p 00000000 00:00 2001779            /usr/lib/x86_64-linux-gnu/girepository-1.0/Arrow-1.0.typelib
7f462264f000-7f462267d000 r--p 00000000 00:00 137788             /usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib
7f462267d000-7f462268c000 r--p 00000000 00:00 137790             /usr/lib/x86_64-linux-gnu/girepository-1.0/GObject-2.0.typelib
7f462268c000-7f4622827000 r--p 00000000 00:00 35322              /usr/lib/locale/locale-archive
7f4622827000-7f4622828000 r--p 00027000 00:00 33283              /lib/x86_64-linux-gnu/ld-2.27.so
7f4622828000-7f4622829000 rw-p 00028000 00:00 33283              /lib/x86_64-linux-gnu/ld-2.27.so
7f4622829000-7f462282a000 rw-p 00000000 00:00 0
7f462282c000-7f4622880000 r--p 00000000 00:00 137791             /usr/lib/x86_64-linux-gnu/girepository-1.0/Gio-2.0.typelib
7f4622880000-7f4622981000 rw-p 00000000 00:00 0
7f462298f000-7f46229c0000 r--p 00000000 00:00 35311              /usr/lib/locale/C.UTF-8/LC_CTYPE
7f46229c0000-7f46229c3000 rw-p 00000000 00:00 0
7f46229d0000-7f46229d2000 rw-p 00000000 00:00 0
7f46229e0000-7f46229e2000 rw-p 00000000 00:00 0
7f46229ef000-7f46229f0000 r--p 00000000 00:00 35315              /usr/lib/locale/C.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES
7f46229f0000-7f46229f7000 r--s 00000000 00:00 137779             /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache
7f4622a00000-7f4622d78000 r-xp 00000000 00:00 453996             /usr/local/bin/ruby
7f4622d78000-7f4622d79000 r-xp 00378000 00:00 453996             /usr/local/bin/ruby
7f4622f78000-7f4622f7e000 r--p 00378000 00:00 453996             /usr/local/bin/ruby
7f4622f7e000-7f4622f7f000 rw-p 0037e000 00:00 453996             /usr/local/bin/ruby
7f4622f7f000-7f4622f90000 rw-p 00000000 00:00 0
7fffd22e4000-7fffd2ef6000 rw-p 00000000 00:00 0                  [heap]
7fffda434000-7fffdac34000 rw-p 00000000 00:00 0                  [stack]
7fffdaf55000-7fffdaf56000 r-xp 00000000 00:00 0                  [vdso]
[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
For details: https://www.ruby-lang.org/bugreport.htmll{code}


> [Ruby]Specifying column type as time causes segmentation fault
> --------------------------------------------------------------
>
>                 Key: ARROW-7442
>                 URL: https://issues.apache.org/jira/browse/ARROW-7442
>             Project: Apache Arrow
>          Issue Type: Bug
>          Components: Ruby
>    Affects Versions: 0.15.1
>         Environment: * Ubuntu 10.04 on Windows Subsystem for Linux
> * Windows 10 Enterprise
> * Ruby 2.6.5p114 (2019-10-01 revision 67812) [x86_64-linux]
> * Red Arrow 0.15.1
>            Reporter: Kitaiti Makoto
>            Priority: Major
>
> Hi, I might find a bug.
> When we specify column type as time via Arrow::Table.load's column_types named argument, it causes segmentation fault:
> I think Ruby's any extension libraries should not cause SEGV.
> Script to reproduce this issue(timedata.rb):
> {code:java}
> require "arrow"
> CSV_FILE = File.join(__dir__, "timedata.csv")
> table = Arrow::Table.load(CSV_FILE, column_types: [["datetime", :time]]{code}
> Sample CSV file(timedata.csv) is:
> {code:java}
> id,datetime,name
> 1,2019-12-19T18:30,
> ,,
> {code}
> Result:
> {code:java}
> % ruby -v ./timedata.rb
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/data-type.rb:88: [BUG] Segmentation fault at 0x0000000000000008
> ruby 2.6.5p114 (2019-10-01 revision 67812) [x86_64-linux]-- Control frame information -----------------------------------------------
> c:0018 p:---- s:0097 e:000096 CFUNC  :initialize
> c:0017 p:---- s:0094 e:000093 CFUNC  :new
> c:0016 p:0125 s:0090 e:000089 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/data-type.rb:88
> c:0015 p:0015 s:0080 e:000077 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-read-options.rb:22
> c:0014 p:0011 s:0072 e:000071 BLOCK  /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:110 [FINISH]
> c:0013 p:---- s:0067 e:000066 CFUNC  :each
> c:0012 p:0161 s:0063 e:000062 BLOCK  /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:109 [FINISH]
> c:0011 p:---- s:0057 e:000056 CFUNC  :each
> c:0010 p:0019 s:0053 e:000052 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:93
> c:0009 p:0004 s:0048 e:000047 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:160
> c:0008 p:0042 s:0042 e:000041 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:39
> c:0007 p:0018 s:0038 e:000037 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:26
> c:0006 p:0078 s:0032 e:000031 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb:152
> c:0005 p:0139 s:0027 e:000026 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb:50
> c:0004 p:0015 s:0019 e:000018 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb:22
> c:0003 p:0018 s:0013 e:000012 METHOD /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table.rb:29
> c:0002 p:0054 s:0007 E:0006f8 EVAL   ./timedata.rb:5 [FINISH]
> c:0001 p:0000 s:0003 E:002070 (none) [FINISH]-- Ruby level backtrace information ----------------------------------------
> ./timedata.rb:5:in `<main>'
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table.rb:29:in `load'
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb:22:in `load'
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb:50:in `load'
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb:152:in `load_as_csv'
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:26:in `load'
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:39:in `load'
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:160:in `load_from_path'
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:93:in `reader_options'
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:93:in `each'
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:109:in `block in reader_options'
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:109:in `each'
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb:110:in `block (2 levels) in reader_options'
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-read-options.rb:22:in `add_column_type'
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/data-type.rb:88:in `resolve'
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/data-type.rb:88:in `new'
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/data-type.rb:88:in `initialize'-- Machine register context ------------------------------------------------
>  RIP: 0x00007f4617b82f1e RBP: 0x00007fffd292f670 RSP: 0x00007fffdac318c0
>  RAX: 0x0000000000000000 RBX: 0x00007fffd292f660 RCX: 0x0000000000000001
>  RDX: 0x0000000000000001 RDI: 0x00007fffdac31940 RSI: 0x00007fffd2cc8640
>   R8: 0x00007fffd2cc8640  R9: 0x0000000000000001 R10: 0x0000000000000032
>  R11: 0x00007f461e3bc6f0 R12: 0x0000000000000000 R13: 0x00007fffdac31940
>  R14: 0x00007fffd2cc8b00 R15: 0x00007fffd2b75590 EFL: 0x0000000000010246-- C level backtrace information -------------------------------------------
> /usr/local/bin/ruby(rb_vm_bugreport+0x7d3) [0x7f4622c89493] vm_dump.c:715
> /usr/local/bin/ruby(rb_bug_context+0xe4) [0x7f4622c7c4f4] error.c:609
> /usr/local/bin/ruby(sigsegv+0x42) [0x7f4622b4d832] signal.c:998
> /lib/x86_64-linux-gnu/libpthread.so.0(__restore_rt+0x0) [0x7f46221d2890]
> /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15(0x7f4617b82f1e) [0x7f4617b82f1e]
> /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0(0x7f461e395a7a) [0x7f461e395a7a]
> /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0(g_object_newv+0x2ad) [0x7f461e3971bd]
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so(rbgobj_gobject_new+0x11c) [0x7f461e9392bc] rbgobj_object.c:397
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so(rbgobj_gobject_new) (null):0
> /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so(rg_initialize+0x12b) [0x7f461e93942b] rbgobj_object.c:867
> /usr/local/bin/ruby(vm_call0_body+0x2d8) [0x7f4622bd48e8] vm_eval.c:86
> /usr/local/bin/ruby(rb_vm_call0+0x35) [0x7f4622bd592f] vm_eval.c:60
> /usr/local/bin/ruby(rb_call0) vm_eval.c:308
> /usr/local/bin/ruby(rb_class_s_new+0x21) [0x7f4622abe811] object.c:2187
> /usr/local/bin/ruby(vm_call_cfunc+0x10a) [0x7f4622bc73ea] vm_insnhelper.c:1908
> /usr/local/bin/ruby(vm_call_method+0xe3) [0x7f4622bd3333] vm_insnhelper.c:2400
> /usr/local/bin/ruby(vm_exec_core+0x12f) [0x7f4622bd949f] insns.def:765
> /usr/local/bin/ruby(rb_vm_exec+0xac) [0x7f4622bcf85c] vm.c:1885
> /usr/local/bin/ruby(rb_yield+0x18e) [0x7f4622bd045e] vm.c:1092
> /usr/local/bin/ruby(rb_ary_each+0x3c) [0x7f4622bf3e0c] array.c:2087
> /usr/local/bin/ruby(vm_call_cfunc+0x10a) [0x7f4622bc73ea] vm_insnhelper.c:1908
> /usr/local/bin/ruby(vm_call_method+0xe3) [0x7f4622bd3333] vm_insnhelper.c:2400
> /usr/local/bin/ruby(vm_exec_core+0x1d3) [0x7f4622bd9543] insns.def:750
> /usr/local/bin/ruby(rb_vm_exec+0xac) [0x7f4622bcf85c] vm.c:1885
> /usr/local/bin/ruby(invoke_block_from_c_bh+0x1f4) [0x7f4622bd09e4] vm.c:1092
> /usr/local/bin/ruby(each_pair_i_fast+0x3b) [0x7f4622a4af9b] hash.c:2775
> /usr/local/bin/ruby(hash_foreach_call+0x75) [0x7f4622a4c7d5] hash.c:1136
> /usr/local/bin/ruby(rb_ensure+0xd3) [0x7f4622a2c013] eval.c:1076
> /usr/local/bin/ruby(rb_hash_foreach+0x7e) [0x7f4622a5371e] hash.c:1229
> /usr/local/bin/ruby(rb_hash_each_pair+0x28) [0x7f4622a540e8] hash.c:2806
> /usr/local/bin/ruby(vm_call_cfunc+0x10a) [0x7f4622bc73ea] vm_insnhelper.c:1908
> /usr/local/bin/ruby(vm_call_method+0xe3) [0x7f4622bd3333] vm_insnhelper.c:2400
> /usr/local/bin/ruby(vm_exec_core+0x1d3) [0x7f4622bd9543] insns.def:750
> /usr/local/bin/ruby(rb_vm_exec+0x6cf) [0x7f4622bcfe7f] vm.c:1894
> /usr/local/bin/ruby(ruby_exec_internal+0xd3) [0x7f4622a26213] eval.c:262
> /usr/local/bin/ruby(ruby_exec_node+0x11) [0x7f4622a2afcb] eval.c:326
> /usr/local/bin/ruby(ruby_run_node) eval.c:318
> /usr/local/bin/ruby(main+0x5b) [0x7f4622a25f0b] ./main.c:42-- Other runtime information -----------------------------------------------* Loaded script: ./timedata.rb* Loaded features:    0 enumerator.so
>     1 thread.rb
>     2 rational.so
>     3 complex.so
>     4 /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
>     5 /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
>     6 /usr/local/lib/ruby/2.6.0/x86_64-linux/rbconfig.rb
>     7 /usr/local/lib/ruby/2.6.0/rubygems/compatibility.rb
>     8 /usr/local/lib/ruby/2.6.0/rubygems/defaults.rb
>     9 /usr/local/lib/ruby/2.6.0/rubygems/deprecate.rb
>    10 /usr/local/lib/ruby/2.6.0/rubygems/errors.rb
>    11 /usr/local/lib/ruby/2.6.0/rubygems/version.rb
>    12 /usr/local/lib/ruby/2.6.0/rubygems/requirement.rb
>    13 /usr/local/lib/ruby/2.6.0/rubygems/platform.rb
>    14 /usr/local/lib/ruby/2.6.0/rubygems/basic_specification.rb
>    15 /usr/local/lib/ruby/2.6.0/rubygems/stub_specification.rb
>    16 /usr/local/lib/ruby/2.6.0/delegate.rb
>    17 /usr/local/lib/ruby/2.6.0/uri/rfc2396_parser.rb
>    18 /usr/local/lib/ruby/2.6.0/uri/rfc3986_parser.rb
>    19 /usr/local/lib/ruby/2.6.0/uri/common.rb
>    20 /usr/local/lib/ruby/2.6.0/uri/generic.rb
>    21 /usr/local/lib/ruby/2.6.0/uri/file.rb
>    22 /usr/local/lib/ruby/2.6.0/uri/ftp.rb
>    23 /usr/local/lib/ruby/2.6.0/uri/http.rb
>    24 /usr/local/lib/ruby/2.6.0/uri/https.rb
>    25 /usr/local/lib/ruby/2.6.0/uri/ldap.rb
>    26 /usr/local/lib/ruby/2.6.0/uri/ldaps.rb
>    27 /usr/local/lib/ruby/2.6.0/uri/mailto.rb
>    28 /usr/local/lib/ruby/2.6.0/uri.rb
>    29 /usr/local/lib/ruby/2.6.0/rubygems/specification_policy.rb
>    30 /usr/local/lib/ruby/2.6.0/rubygems/util/list.rb
>    31 /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
>    32 /usr/local/lib/ruby/2.6.0/rubygems/specification.rb
>    33 /usr/local/lib/ruby/2.6.0/rubygems/exceptions.rb
>    34 /usr/local/lib/ruby/2.6.0/rubygems/util.rb
>    35 /usr/local/lib/ruby/2.6.0/rubygems/bundler_version_finder.rb
>    36 /usr/local/lib/ruby/2.6.0/rubygems/dependency.rb
>    37 /usr/local/lib/ruby/2.6.0/rubygems/core_ext/kernel_gem.rb
>    38 /usr/local/lib/ruby/2.6.0/monitor.rb
>    39 /usr/local/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb
>    40 /usr/local/lib/ruby/2.6.0/rubygems/core_ext/kernel_warn.rb
>    41 /usr/local/lib/ruby/2.6.0/rubygems.rb
>    42 /usr/local/lib/ruby/2.6.0/rubygems/path_support.rb
>    43 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/version.rb
>    44 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/core_ext/name_error.rb
>    45 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/levenshtein.rb
>    46 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/jaro_winkler.rb
>    47 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checker.rb
>    48 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checkers/name_error_checkers/class_name_checker.rb
>    49 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checkers/name_error_checkers/variable_name_checker.rb
>    50 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checkers/name_error_checkers.rb
>    51 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checkers/method_name_checker.rb
>    52 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checkers/key_error_checker.rb
>    53 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/spell_checkers/null_checker.rb
>    54 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean/formatters/plain_formatter.rb
>    55 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/did_you_mean-1.3.1/lib/did_you_mean.rb
>    56 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/extpp-0.0.8/lib/extpp/setup.rb
>    57 /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
>    58 /usr/local/lib/ruby/2.6.0/pathname.rb
>    59 /usr/local/lib/ruby/2.6.0/English.rb
>    60 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2/deprecatable.rb
>    61 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
>    62 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2/version.rb
>    63 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2/regex.rb
>    64 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2/deprecated.rb
>    65 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.rb
>    66 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject_introspection.so
>    67 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/arg-info.rb
>    68 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/collection-reader.rb
>    69 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/boxed-info.rb
>    70 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/callable-info.rb
>    71 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/function-info.rb
>    72 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/interface-info.rb
>    73 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/object-info.rb
>    74 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/registered-type-info.rb
>    75 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/repository.rb
>    76 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/struct-info.rb
>    77 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/type-info.rb
>    78 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/type-tag.rb
>    79 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/union-info.rb
>    80 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/version.rb
>    81 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection/loader.rb
>    82 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject-introspection.rb
>    83 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/loader.rb
>    84 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.so
>    85 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/action.rb
>    86 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/action-map.rb
>    87 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/application-command-line.rb
>    88 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/content-type.rb
>    89 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/file.rb
>    90 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/icon.rb
>    91 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/inet-address.rb
>    92 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/input-stream.rb
>    93 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/menu-item.rb
>    94 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/pollable-input-stream.rb
>    95 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/pollable-output-stream.rb
>    96 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/resources.rb
>    97 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/settings.rb
>    98 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/settings-schema-source.rb
>    99 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/simple-action.rb
>   100 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2/deprecated.rb
>   101 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.rb
>   102 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/version.rb
>   103 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/block-closable.rb
>   104 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/loader.rb
>   105 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/array.rb
>   106 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date_core.so
>   107 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date.rb
>   108 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/array-builder.rb
>   109 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/binary-array-builder.rb
>   110 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/chunked-array.rb
>   111 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/column.rb
>   112 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/compression-type.rb
>   113 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/forwardable-1.3.1/lib/forwardable/impl.rb
>   114 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/forwardable-1.3.1/lib/forwardable/version.rb
>   115 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/forwardable-1.3.1/lib/forwardable.rb
>   116 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/fields_converter.rb
>   117 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/match_p.rb
>   118 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/strscan-1.0.3/lib/strscan.so
>   119 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/delete_suffix.rb
>   120 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/row.rb
>   121 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/table.rb
>   122 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/parser.rb
>   123 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/writer.rb
>   124 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/version.rb
>   125 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/core_ext/array.rb
>   126 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv/core_ext/string.rb
>   127 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/csv-3.1.2/lib/csv.rb
>   128 /usr/local/lib/ruby/2.6.0/time.rb
>   129 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-loader.rb
>   130 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/csv-read-options.rb
>   131 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/data-type.rb
>   132 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/date32-array.rb
>   133 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/date32-array-builder.rb
>   134 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/date64-array.rb
>   135 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/date64-array-builder.rb
>   136 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/decimal128.rb
>   137 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/decimal128-array.rb
>   138 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.so
>   139 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.rb
>   140 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/bigdecimal-extension.rb
>   141 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/decimal128-array-builder.rb
>   142 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/decimal128-data-type.rb
>   143 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/dense-union-data-type.rb
>   144 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/dictionary-data-type.rb
>   145 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/field.rb
>   146 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/file-output-stream.rb
>   147 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/list-array-builder.rb
>   148 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/list-data-type.rb
>   149 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/null-array-builder.rb
>   150 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/path-extension.rb
>   151 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/record.rb
>   152 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/column-containable.rb
>   153 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/record-containable.rb
>   154 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/record-batch.rb
>   155 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/record-batch-builder.rb
>   156 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/record-batch-file-reader.rb
>   157 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/record-batch-stream-reader.rb
>   158 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/rolling-window.rb
>   159 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/field-containable.rb
>   160 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/schema.rb
>   161 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/slicer.rb
>   162 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/sparse-union-data-type.rb
>   163 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/struct-array.rb
>   164 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/struct-array-builder.rb
>   165 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/struct-data-type.rb
>   166 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/group.rb
>   167 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table.rb
>   168 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-formatter.rb
>   169 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-list-formatter.rb
>   170 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-table-formatter.rb
>   171 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-loader.rb
>   172 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/table-saver.rb
>   173 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/tensor.rb
>   174 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time.rb
>   175 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time32-array.rb
>   176 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time32-array-builder.rb
>   177 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time32-data-type.rb
>   178 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time64-array.rb
>   179 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time64-array-builder.rb
>   180 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/time64-data-type.rb
>   181 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/timestamp-array.rb
>   182 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/timestamp-array-builder.rb
>   183 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/timestamp-data-type.rb
>   184 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow/writable.rb
>   185 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.so
>   186 /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.rb* Process memory map:7f460c000000-7f460c021000 rw-p 00000000 00:00 0
> 7f460c021000-7f4610000000 ---p 00000000 00:00 0
> 7f46117b0000-7f46119a0000 r--s 00000000 00:00 33307              /lib/x86_64-linux-gnu/libc-2.27.so
> 7f46119a0000-7f46119ea000 rw-p 00000000 00:00 0
> 7f46119ee000-7f4611aff000 r--s 00000000 00:00 1661697            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
> 7f4611aff000-7f4612d50000 r--s 00000000 00:00 453996             /usr/local/bin/ruby
> 7f4612d50000-7f4612d56000 r-xp 00000000 00:00 1659347            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/extpp-0.0.8/ext/extpp/libruby-extpp.so
> 7f4612d56000-7f4612d88000 ---p 00006000 00:00 1659347            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/extpp-0.0.8/ext/extpp/libruby-extpp.so
> 7f4612d88000-7f4612f55000 ---p 00000038 00:00 1659347            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/extpp-0.0.8/ext/extpp/libruby-extpp.so
> 7f4612f55000-7f4612f56000 r--p 00005000 00:00 1659347            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/extpp-0.0.8/ext/extpp/libruby-extpp.so
> 7f4612f56000-7f4612f57000 rw-p 00006000 00:00 1659347            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/extpp-0.0.8/ext/extpp/libruby-extpp.so
> 7f4612f60000-7f4612f78000 r-xp 00000000 00:00 2006190            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.so
> 7f4612f78000-7f4613017000 ---p 00018000 00:00 2006190            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.so
> 7f4613017000-7f4613178000 ---p 000000b7 00:00 2006190            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.so
> 7f4613178000-7f4613179000 r--p 00018000 00:00 2006190            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.so
> 7f4613179000-7f461317a000 rw-p 00019000 00:00 2006190            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/red-arrow-0.15.1/lib/arrow.so
> 7f4613180000-7f4613195000 r-xp 00000000 00:00 279300             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.so
> 7f4613195000-7f46131be000 ---p 00015000 00:00 279300             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.so
> 7f46131be000-7f4613394000 ---p 0000003e 00:00 279300             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.so
> 7f4613394000-7f4613395000 r--p 00014000 00:00 279300             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.so
> 7f4613395000-7f4613396000 rw-p 00015000 00:00 279300             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/bigdecimal-1.4.4/lib/bigdecimal.so
> 7f46133a0000-7f46133a8000 r-xp 00000000 00:00 428789             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/strscan-1.0.3/lib/strscan.so
> 7f46133a8000-7f46133c2000 ---p 00008000 00:00 428789             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/strscan-1.0.3/lib/strscan.so
> 7f46133c2000-7f46135a7000 ---p 00000022 00:00 428789             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/strscan-1.0.3/lib/strscan.so
> 7f46135a7000-7f46135a8000 r--p 00007000 00:00 428789             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/strscan-1.0.3/lib/strscan.so
> 7f46135a8000-7f46135a9000 rw-p 00008000 00:00 428789             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/strscan-1.0.3/lib/strscan.so
> 7f46135b0000-7f46135e5000 r-xp 00000000 00:00 656316             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date_core.so
> 7f46135e5000-7f4613641000 ---p 00035000 00:00 656316             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date_core.so
> 7f4613641000-7f46137e4000 ---p 00000091 00:00 656316             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date_core.so
> 7f46137e4000-7f46137e5000 r--p 00034000 00:00 656316             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date_core.so
> 7f46137e5000-7f46137e6000 rw-p 00035000 00:00 656316             /home/kitaitimakoto/.gem/ruby/2.6.0/gems/date-3.0.0/lib/date_core.so
> 7f46137e6000-7f46137e7000 rw-p 00000000 00:00 0
> 7f46137f0000-7f46137f1000 ---p 00000000 00:00 0
> 7f46137f1000-7f4613ff1000 rw-p 00000000 00:00 0
> 7f4614000000-7f46148c8000 rw-p 00000000 00:00 0
> 7f46148d5000-7f4614990000 r--s 00000000 00:00 647808             /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15.1.0
> 7f4614990000-7f46149b4000 r-xp 00000000 00:00 33379              /lib/x86_64-linux-gnu/liblzma.so.5.2.2
> 7f46149b4000-7f46149b6000 ---p 00024000 00:00 33379              /lib/x86_64-linux-gnu/liblzma.so.5.2.2
> 7f46149b6000-7f4614bb4000 ---p 00000026 00:00 33379              /lib/x86_64-linux-gnu/liblzma.so.5.2.2
> 7f4614bb4000-7f4614bb5000 r--p 00024000 00:00 33379              /lib/x86_64-linux-gnu/liblzma.so.5.2.2
> 7f4614bb5000-7f4614bb6000 rw-p 00025000 00:00 33379              /lib/x86_64-linux-gnu/liblzma.so.5.2.2
> 7f4614bc0000-7f4614bcc000 r-xp 00000000 00:00 138042             /usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1
> 7f4614bcc000-7f4614bcd000 ---p 0000c000 00:00 138042             /usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1
> 7f4614bcd000-7f4614dcb000 ---p 0000000d 00:00 138042             /usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1
> 7f4614dcb000-7f4614dcc000 r--p 0000b000 00:00 138042             /usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1
> 7f4614dcc000-7f4614dcd000 rw-p 0000c000 00:00 138042             /usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1
> 7f4614dcd000-7f4614ddb000 rw-p 00000000 00:00 0
> 7f4614de0000-7f4614e04000 r-xp 00000000 00:00 2002700            /usr/lib/x86_64-linux-gnu/libgflags.so.2.2.1
> 7f4614e04000-7f4614e05000 ---p 00024000 00:00 2002700            /usr/lib/x86_64-linux-gnu/libgflags.so.2.2.1
> 7f4614e05000-7f4615003000 ---p 00000025 00:00 2002700            /usr/lib/x86_64-linux-gnu/libgflags.so.2.2.1
> 7f4615003000-7f4615004000 r--p 00023000 00:00 2002700            /usr/lib/x86_64-linux-gnu/libgflags.so.2.2.1
> 7f4615004000-7f4615005000 rw-p 00024000 00:00 2002700            /usr/lib/x86_64-linux-gnu/libgflags.so.2.2.1
> 7f4615010000-7f461502f000 r-xp 00000000 00:00 2002028            /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.4
> 7f461502f000-7f4615030000 ---p 0001f000 00:00 2002028            /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.4
> 7f4615030000-7f461522e000 ---p 00000020 00:00 2002028            /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.4
> 7f461522e000-7f461522f000 r--p 0001e000 00:00 2002028            /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.4
> 7f461522f000-7f4615230000 rw-p 0001f000 00:00 2002028            /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.4
> 7f4615230000-7f4615234000 r-xp 00000000 00:00 2001795            /usr/lib/x86_64-linux-gnu/libboost_system.so.1.65.1
> 7f4615234000-7f4615235000 ---p 00004000 00:00 2001795            /usr/lib/x86_64-linux-gnu/libboost_system.so.1.65.1
> 7f4615235000-7f4615433000 ---p 00000005 00:00 2001795            /usr/lib/x86_64-linux-gnu/libboost_system.so.1.65.1
> 7f4615433000-7f4615434000 r--p 00003000 00:00 2001795            /usr/lib/x86_64-linux-gnu/libboost_system.so.1.65.1
> 7f4615434000-7f4615435000 rw-p 00004000 00:00 2001795            /usr/lib/x86_64-linux-gnu/libboost_system.so.1.65.1
> 7f4615440000-7f4615459000 r-xp 00000000 00:00 2001919            /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.65.1
> 7f4615459000-7f461545a000 ---p 00019000 00:00 2001919            /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.65.1
> 7f461545a000-7f4615658000 ---p 0000001a 00:00 2001919            /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.65.1
> 7f4615658000-7f4615659000 r--p 00018000 00:00 2001919            /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.65.1
> 7f4615659000-7f461565a000 rw-p 00019000 00:00 2001919            /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.65.1
> 7f4615660000-7f46156da000 r-xp 00000000 00:00 137406             /usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3
> 7f46156da000-7f46156db000 ---p 0007a000 00:00 137406             /usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3
> 7f46156db000-7f46158d9000 ---p 0000007b 00:00 137406             /usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3
> 7f46158d9000-7f46158da000 r--p 00079000 00:00 137406             /usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3
> 7f46158da000-7f46158db000 rw-p 0007a000 00:00 137406             /usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3
> 7f46158e0000-7f46158e7000 r-xp 00000000 00:00 1001124            /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.7
> 7f46158e7000-7f46158e8000 ---p 00007000 00:00 1001124            /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.7
> 7f46158e8000-7f4615ae6000 ---p 00000008 00:00 1001124            /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.7
> 7f4615ae6000-7f4615ae7000 r--p 00006000 00:00 1001124            /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.7
> 7f4615ae7000-7f4615ae8000 rw-p 00007000 00:00 1001124            /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.7
> 7f4615af0000-7f4615b0b000 r-xp 00000000 00:00 137962             /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1
> 7f4615b0b000-7f4615b0c000 ---p 0001b000 00:00 137962             /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1
> 7f4615b0c000-7f4615d0a000 ---p 0000001c 00:00 137962             /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1
> 7f4615d0a000-7f4615d0b000 r--p 0001a000 00:00 137962             /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1
> 7f4615d0b000-7f4615d0c000 rw-p 0001b000 00:00 137962             /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1
> 7f4615d10000-7f4615d2f000 r-xp 00000000 00:00 2003623            /usr/lib/x86_64-linux-gnu/libglog.so.0.0.0
> 7f4615d2f000-7f4615d31000 ---p 0001f000 00:00 2003623            /usr/lib/x86_64-linux-gnu/libglog.so.0.0.0
> 7f4615d31000-7f4615f2f000 ---p 00000021 00:00 2003623            /usr/lib/x86_64-linux-gnu/libglog.so.0.0.0
> 7f4615f2f000-7f4615f30000 r--p 0001f000 00:00 2003623            /usr/lib/x86_64-linux-gnu/libglog.so.0.0.0
> 7f4615f30000-7f4615f31000 rw-p 00020000 00:00 2003623            /usr/lib/x86_64-linux-gnu/libglog.so.0.0.0
> 7f4615f31000-7f4615f41000 rw-p 00000000 00:00 0
> 7f4615f50000-7f4615f5b000 r-xp 00000000 00:00 2002035            /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.4
> 7f4615f5b000-7f4615f5c000 ---p 0000b000 00:00 2002035            /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.4
> 7f4615f5c000-7f461615a000 ---p 0000000c 00:00 2002035            /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.4
> 7f461615a000-7f461615b000 r--p 0000a000 00:00 2002035            /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.4
> 7f461615b000-7f461615c000 rw-p 0000b000 00:00 2002035            /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.4
> 7f4616160000-7f46161e6000 r-xp 00000000 00:00 2002185            /usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.4
> 7f46161e6000-7f46161e7000 ---p 00086000 00:00 2002185            /usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.4
> 7f46161e7000-7f46163e5000 ---p 00000087 00:00 2002185            /usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.4
> 7f46163e5000-7f46163e6000 r--p 00085000 00:00 2002185            /usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.4
> 7f46163e6000-7f46163e7000 rw-p 00086000 00:00 2002185            /usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.4
> 7f46163f0000-7f4616400000 r-xp 00000000 00:00 2002344            /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.1.0
> 7f4616400000-7f4616401000 ---p 00010000 00:00 2002344            /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.1.0
> 7f4616401000-7f46165ff000 ---p 00000011 00:00 2002344            /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.1.0
> 7f46165ff000-7f4616600000 r--p 0000f000 00:00 2002344            /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.1.0
> 7f4616600000-7f4616601000 rw-p 00010000 00:00 2002344            /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.1.0
> 7f4616610000-7f4616627000 r-xp 00000000 00:00 34041              /lib/x86_64-linux-gnu/libgcc_s.so.1
> 7f4616627000-7f4616628000 ---p 00017000 00:00 34041              /lib/x86_64-linux-gnu/libgcc_s.so.1
> 7f4616628000-7f4616826000 ---p 00000018 00:00 34041              /lib/x86_64-linux-gnu/libgcc_s.so.1
> 7f4616826000-7f4616827000 r--p 00016000 00:00 34041              /lib/x86_64-linux-gnu/libgcc_s.so.1
> 7f4616827000-7f4616828000 rw-p 00017000 00:00 34041              /lib/x86_64-linux-gnu/libgcc_s.so.1
> 7f4616830000-7f46169a9000 r-xp 00000000 00:00 34137              /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
> 7f46169a9000-7f46169b6000 ---p 00179000 00:00 34137              /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
> 7f46169b6000-7f4616ba9000 ---p 00000186 00:00 34137              /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
> 7f4616ba9000-7f4616bb3000 r--p 00179000 00:00 34137              /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
> 7f4616bb3000-7f4616bb5000 rw-p 00183000 00:00 34137              /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
> 7f4616bb5000-7f4616bb9000 rw-p 00000000 00:00 0
> 7f4616bc0000-7f46176da000 r-xp 00000000 00:00 2003880            /usr/lib/x86_64-linux-gnu/libarrow.so.15.1.0
> 7f46176da000-7f4617717000 ---p 00b1a000 00:00 2003880            /usr/lib/x86_64-linux-gnu/libarrow.so.15.1.0
> 7f4617717000-7f46178d9000 ---p 00000b57 00:00 2003880            /usr/lib/x86_64-linux-gnu/libarrow.so.15.1.0
> 7f46178d9000-7f4617913000 r--p 00b19000 00:00 2003880            /usr/lib/x86_64-linux-gnu/libarrow.so.15.1.0
> 7f4617913000-7f4617916000 rw-p 00b53000 00:00 2003880            /usr/lib/x86_64-linux-gnu/libarrow.so.15.1.0
> 7f4617916000-7f4617b2b000 rw-p 00000000 00:00 0
> 7f4617b30000-7f4617be7000 r-xp 00000000 00:00 647808             /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15.1.0
> 7f4617be7000-7f4617beb000 ---p 000b7000 00:00 647808             /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15.1.0
> 7f4617beb000-7f4617de6000 ---p 000000bb 00:00 647808             /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15.1.0
> 7f4617de6000-7f4617de9000 r--p 000b6000 00:00 647808             /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15.1.0
> 7f4617de9000-7f4617dea000 rw-p 000b9000 00:00 647808             /usr/lib/x86_64-linux-gnu/libarrow-glib.so.15.1.0
> 7f4617dea000-7f4617deb000 rw-p 00000000 00:00 0
> 7f4617df0000-7f4617df2000 r-xp 00000000 00:00 2012571            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.so
> 7f4617df2000-7f4617e18000 ---p 00002000 00:00 2012571            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.so
> 7f4617e18000-7f4617ff1000 ---p 00000028 00:00 2012571            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.so
> 7f4617ff1000-7f4617ff2000 r--p 00001000 00:00 2012571            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.so
> 7f4617ff2000-7f4617ff3000 rw-p 00002000 00:00 2012571            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gio2-3.4.1/lib/gio2.so
> 7f4618000000-7f4618021000 rw-p 00000000 00:00 0
> 7f4618021000-7f461c000000 ---p 00000000 00:00 0
> 7f461c000000-7f461c04b000 rw-p 00000000 00:00 0
> 7f461c058000-7f461c0ac000 r--s 00000000 00:00 144187             /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4
> 7f461c0ac000-7f461c0d0000 r--s 00000000 00:00 33454              /lib/x86_64-linux-gnu/libpthread-2.27.so
> 7f461c0d0000-7f461c131000 rw-p 00000000 00:00 0
> 7f461c140000-7f461c141000 ---p 00000000 00:00 0
> 7f461c141000-7f461c941000 rw-p 00000000 00:00 0
> 7f461c950000-7f461c956000 r-xp 00000000 00:00 142890             /lib/x86_64-linux-gnu/libuuid.so.1.3.0
> 7f461c956000-7f461c957000 ---p 00006000 00:00 142890             /lib/x86_64-linux-gnu/libuuid.so.1.3.0
> 7f461c957000-7f461cb55000 ---p 00000007 00:00 142890             /lib/x86_64-linux-gnu/libuuid.so.1.3.0
> 7f461cb55000-7f461cb56000 r--p 00005000 00:00 142890             /lib/x86_64-linux-gnu/libuuid.so.1.3.0
> 7f461cb56000-7f461cb57000 rw-p 00006000 00:00 142890             /lib/x86_64-linux-gnu/libuuid.so.1.3.0
> 7f461cb60000-7f461cba7000 r-xp 00000000 00:00 142895             /lib/x86_64-linux-gnu/libblkid.so.1.1.0
> 7f461cba7000-7f461cbad000 ---p 00047000 00:00 142895             /lib/x86_64-linux-gnu/libblkid.so.1.1.0
> 7f461cbad000-7f461cda7000 ---p 0000004d 00:00 142895             /lib/x86_64-linux-gnu/libblkid.so.1.1.0
> 7f461cda7000-7f461cdab000 r--p 00047000 00:00 142895             /lib/x86_64-linux-gnu/libblkid.so.1.1.0
> 7f461cdab000-7f461cdac000 rw-p 0004b000 00:00 142895             /lib/x86_64-linux-gnu/libblkid.so.1.1.0
> 7f461cdac000-7f461cdad000 rw-p 00000000 00:00 0
> 7f461cdb0000-7f461ce01000 r-xp 00000000 00:00 146446             /lib/x86_64-linux-gnu/libmount.so.1.1.0
> 7f461ce01000-7f461ce04000 ---p 00051000 00:00 146446             /lib/x86_64-linux-gnu/libmount.so.1.1.0
> 7f461ce04000-7f461d000000 ---p 00000054 00:00 146446             /lib/x86_64-linux-gnu/libmount.so.1.1.0
> 7f461d000000-7f461d002000 r--p 00050000 00:00 146446             /lib/x86_64-linux-gnu/libmount.so.1.1.0
> 7f461d002000-7f461d003000 rw-p 00052000 00:00 146446             /lib/x86_64-linux-gnu/libmount.so.1.1.0
> 7f461d003000-7f461d004000 rw-p 00000000 00:00 0
> 7f461d010000-7f461d027000 r-xp 00000000 00:00 33460              /lib/x86_64-linux-gnu/libresolv-2.27.so
> 7f461d027000-7f461d029000 ---p 00017000 00:00 33460              /lib/x86_64-linux-gnu/libresolv-2.27.so
> 7f461d029000-7f461d227000 ---p 00000019 00:00 33460              /lib/x86_64-linux-gnu/libresolv-2.27.so
> 7f461d227000-7f461d228000 r--p 00017000 00:00 33460              /lib/x86_64-linux-gnu/libresolv-2.27.so
> 7f461d228000-7f461d229000 rw-p 00018000 00:00 33460              /lib/x86_64-linux-gnu/libresolv-2.27.so
> 7f461d229000-7f461d22b000 rw-p 00000000 00:00 0
> 7f461d230000-7f461d255000 r-xp 00000000 00:00 33467              /lib/x86_64-linux-gnu/libselinux.so.1
> 7f461d255000-7f461d256000 ---p 00025000 00:00 33467              /lib/x86_64-linux-gnu/libselinux.so.1
> 7f461d256000-7f461d454000 ---p 00000026 00:00 33467              /lib/x86_64-linux-gnu/libselinux.so.1
> 7f461d454000-7f461d455000 r--p 00024000 00:00 33467              /lib/x86_64-linux-gnu/libselinux.so.1
> 7f461d455000-7f461d456000 rw-p 00025000 00:00 33467              /lib/x86_64-linux-gnu/libselinux.so.1
> 7f461d456000-7f461d458000 rw-p 00000000 00:00 0
> 7f461d460000-7f461d5f5000 r-xp 00000000 00:00 144184             /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4
> 7f461d5f5000-7f461d5fd000 ---p 00195000 00:00 144184             /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4
> 7f461d5fd000-7f461d7f5000 ---p 0000019d 00:00 144184             /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4
> 7f461d7f5000-7f461d7fc000 r--p 00195000 00:00 144184             /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4
> 7f461d7fc000-7f461d7fd000 rw-p 0019c000 00:00 144184             /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4
> 7f461d7fd000-7f461d7ff000 rw-p 00000000 00:00 0
> 7f461d800000-7f461d803000 r-xp 00000000 00:00 144186             /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4
> 7f461d803000-7f461d804000 ---p 00003000 00:00 144186             /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4
> 7f461d804000-7f461da02000 ---p 00000004 00:00 144186             /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4
> 7f461da02000-7f461da03000 r--p 00002000 00:00 144186             /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4
> 7f461da03000-7f461da04000 rw-p 00003000 00:00 144186             /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4
> 7f461da10000-7f461da43000 r-xp 00000000 00:00 137883             /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
> 7f461da43000-7f461da44000 ---p 00033000 00:00 137883             /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
> 7f461da44000-7f461dc42000 ---p 00000034 00:00 137883             /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
> 7f461dc42000-7f461dc43000 r--p 00032000 00:00 137883             /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
> 7f461dc43000-7f461dc44000 rw-p 00033000 00:00 137883             /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
> 7f461dc50000-7f461dc70000 r-xp 00000000 00:00 1999784            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject_introspection.so
> 7f461dc70000-7f461dcc9000 ---p 00020000 00:00 1999784            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject_introspection.so
> 7f461dcc9000-7f461de70000 ---p 00000079 00:00 1999784            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject_introspection.so
> 7f461de70000-7f461de71000 r--p 00020000 00:00 1999784            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject_introspection.so
> 7f461de71000-7f461de72000 rw-p 00021000 00:00 1999784            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/gobject-introspection-3.4.1/lib/gobject_introspection.so
> 7f461de80000-7f461dee1000 rw-p 00000000 00:00 0
> 7f461def0000-7f461def7000 r-xp 00000000 00:00 137867             /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
> 7f461def7000-7f461def8000 ---p 00007000 00:00 137867             /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
> 7f461def8000-7f461e0f6000 ---p 00000008 00:00 137867             /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
> 7f461e0f6000-7f461e0f7000 r--p 00006000 00:00 137867             /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
> 7f461e0f7000-7f461e0f8000 rw-p 00007000 00:00 137867             /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
> 7f461e100000-7f461e170000 r-xp 00000000 00:00 33443              /lib/x86_64-linux-gnu/libpcre.so.3.13.3
> 7f461e170000-7f461e172000 ---p 00070000 00:00 33443              /lib/x86_64-linux-gnu/libpcre.so.3.13.3
> 7f461e172000-7f461e370000 ---p 00000072 00:00 33443              /lib/x86_64-linux-gnu/libpcre.so.3.13.3
> 7f461e370000-7f461e371000 r--p 00070000 00:00 33443              /lib/x86_64-linux-gnu/libpcre.so.3.13.3
> 7f461e371000-7f461e372000 rw-p 00071000 00:00 33443              /lib/x86_64-linux-gnu/libpcre.so.3.13.3
> 7f461e380000-7f461e3d2000 r-xp 00000000 00:00 144187             /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4
> 7f461e3d2000-7f461e3d4000 ---p 00052000 00:00 144187             /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4
> 7f461e3d4000-7f461e5d2000 ---p 00000054 00:00 144187             /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4
> 7f461e5d2000-7f461e5d3000 r--p 00052000 00:00 144187             /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4
> 7f461e5d3000-7f461e5d4000 rw-p 00053000 00:00 144187             /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4
> 7f461e5e0000-7f461e6f4000 r-xp 00000000 00:00 144185             /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4
> 7f461e6f4000-7f461e6f6000 ---p 00114000 00:00 144185             /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4
> 7f461e6f6000-7f461e8f4000 ---p 00000116 00:00 144185             /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4
> 7f461e8f4000-7f461e8f5000 r--p 00114000 00:00 144185             /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4
> 7f461e8f5000-7f461e8f6000 rw-p 00115000 00:00 144185             /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4
> 7f461e8f6000-7f461e8f7000 rw-p 00000000 00:00 0
> 7f461e900000-7f461e95b000 r-xp 00000000 00:00 1661697            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
> 7f461e95b000-7f461ea11000 ---p 0005b000 00:00 1661697            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
> 7f461ea11000-7f461eb5b000 ---p 00000111 00:00 1661697            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
> 7f461eb5b000-7f461eb60000 r--p 0005b000 00:00 1661697            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
> 7f461eb60000-7f461eb62000 rw-p 00060000 00:00 1661697            /home/kitaitimakoto/.gem/ruby/2.6.0/gems/glib2-3.4.1/lib/glib2.so
> 7f461eb62000-7f461eb63000 rw-p 00000000 00:00 0
> 7f461eb70000-7f461eb78000 r-xp 00000000 00:00 737330             /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
> 7f461eb78000-7f461eb93000 ---p 00008000 00:00 737330             /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
> 7f461eb93000-7f461ed77000 ---p 00000023 00:00 737330             /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
> 7f461ed77000-7f461ed78000 r--p 00007000 00:00 737330             /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
> 7f461ed78000-7f461ed79000 rw-p 00008000 00:00 737330             /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
> 7f461ed80000-7f461ed89000 r-xp 00000000 00:00 737334             /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
> 7f461ed89000-7f461eda6000 ---p 00009000 00:00 737334             /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
> 7f461eda6000-7f461ef88000 ---p 00000026 00:00 737334             /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
> 7f461ef88000-7f461ef89000 r--p 00008000 00:00 737334             /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
> 7f461ef89000-7f461ef8a000 rw-p 00009000 00:00 737334             /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
> 7f461ef90000-7f461ef92000 r-xp 00000000 00:00 688271             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
> 7f461ef92000-7f461ef96000 ---p 00002000 00:00 688271             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
> 7f461ef96000-7f461f192000 ---p 00000006 00:00 688271             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
> 7f461f192000-7f461f193000 r--p 00002000 00:00 688271             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
> 7f461f193000-7f461f194000 rw-p 00003000 00:00 688271             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
> 7f461f1a0000-7f461f1a2000 r-xp 00000000 00:00 688267             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
> 7f461f1a2000-7f461f1b4000 ---p 00002000 00:00 688267             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
> 7f461f1b4000-7f461f3a1000 ---p 00000014 00:00 688267             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
> 7f461f3a1000-7f461f3a2000 r--p 00001000 00:00 688267             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
> 7f461f3a2000-7f461f3a3000 rw-p 00002000 00:00 688267             /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
> 7f461f3b0000-7f46213b9000 rw-p 00000000 00:00 0
> 7f46213c0000-7f46215a7000 r-xp 00000000 00:00 33307              /lib/x86_64-linux-gnu/libc-2.27.so
> 7f46215a7000-7f46215b0000 ---p 001e7000 00:00 33307              /lib/x86_64-linux-gnu/libc-2.27.so
> 7f46215b0000-7f46217a7000 ---p 000001f0 00:00 33307              /lib/x86_64-linux-gnu/libc-2.27.so
> 7f46217a7000-7f46217ab000 r--p 001e7000 00:00 33307              /lib/x86_64-linux-gnu/libc-2.27.so
> 7f46217ab000-7f46217ad000 rw-p 001eb000 00:00 33307              /lib/x86_64-linux-gnu/libc-2.27.so
> 7f46217ad000-7f46217b1000 rw-p 00000000 00:00 0
> 7f46217c0000-7f462195d000 r-xp 00000000 00:00 33383              /lib/x86_64-linux-gnu/libm-2.27.so
> 7f462195d000-7f4621960000 ---p 0019d000 00:00 33383              /lib/x86_64-linux-gnu/libm-2.27.so
> 7f4621960000-7f4621b5c000 ---p 000001a0 00:00 33383              /lib/x86_64-linux-gnu/libm-2.27.so
> 7f4621b5c000-7f4621b5d000 r--p 0019c000 00:00 33383              /lib/x86_64-linux-gnu/libm-2.27.so
> 7f4621b5d000-7f4621b5e000 rw-p 0019d000 00:00 33383              /lib/x86_64-linux-gnu/libm-2.27.so
> 7f4621b60000-7f4621b69000 r-xp 00000000 00:00 33317              /lib/x86_64-linux-gnu/libcrypt-2.27.so
> 7f4621b69000-7f4621b6a000 ---p 00009000 00:00 33317              /lib/x86_64-linux-gnu/libcrypt-2.27.so
> 7f4621b6a000-7f4621d68000 ---p 0000000a 00:00 33317              /lib/x86_64-linux-gnu/libcrypt-2.27.so
> 7f4621d68000-7f4621d69000 r--p 00008000 00:00 33317              /lib/x86_64-linux-gnu/libcrypt-2.27.so
> 7f4621d69000-7f4621d6a000 rw-p 00009000 00:00 33317              /lib/x86_64-linux-gnu/libcrypt-2.27.so
> 7f4621d6a000-7f4621d98000 rw-p 00000000 00:00 0
> 7f4621da0000-7f4621da3000 r-xp 00000000 00:00 33331              /lib/x86_64-linux-gnu/libdl-2.27.so
> 7f4621da3000-7f4621da4000 ---p 00003000 00:00 33331              /lib/x86_64-linux-gnu/libdl-2.27.so
> 7f4621da4000-7f4621fa2000 ---p 00000004 00:00 33331              /lib/x86_64-linux-gnu/libdl-2.27.so
> 7f4621fa2000-7f4621fa3000 r--p 00002000 00:00 33331              /lib/x86_64-linux-gnu/libdl-2.27.so
> 7f4621fa3000-7f4621fa4000 rw-p 00003000 00:00 33331              /lib/x86_64-linux-gnu/libdl-2.27.so
> 7f4621fb0000-7f4621fb7000 r-xp 00000000 00:00 33463              /lib/x86_64-linux-gnu/librt-2.27.so
> 7f4621fb7000-7f4621fb8000 ---p 00007000 00:00 33463              /lib/x86_64-linux-gnu/librt-2.27.so
> 7f4621fb8000-7f46221b6000 ---p 00000008 00:00 33463              /lib/x86_64-linux-gnu/librt-2.27.so
> 7f46221b6000-7f46221b7000 r--p 00006000 00:00 33463              /lib/x86_64-linux-gnu/librt-2.27.so
> 7f46221b7000-7f46221b8000 rw-p 00007000 00:00 33463              /lib/x86_64-linux-gnu/librt-2.27.so
> 7f46221c0000-7f46221da000 r-xp 00000000 00:00 33454              /lib/x86_64-linux-gnu/libpthread-2.27.so
> 7f46221da000-7f46221e4000 ---p 0001a000 00:00 33454              /lib/x86_64-linux-gnu/libpthread-2.27.so
> 7f46221e4000-7f46223d9000 ---p 00000024 00:00 33454              /lib/x86_64-linux-gnu/libpthread-2.27.so
> 7f46223d9000-7f46223da000 r--p 00019000 00:00 33454              /lib/x86_64-linux-gnu/libpthread-2.27.so
> 7f46223da000-7f46223db000 rw-p 0001a000 00:00 33454              /lib/x86_64-linux-gnu/libpthread-2.27.so
> 7f46223db000-7f46223df000 rw-p 00000000 00:00 0
> 7f46223e0000-7f46223fc000 r-xp 00000000 00:00 33495              /lib/x86_64-linux-gnu/libz.so.1.2.11
> 7f46223fc000-7f46223fd000 ---p 0001c000 00:00 33495              /lib/x86_64-linux-gnu/libz.so.1.2.11
> 7f46223fd000-7f46225fb000 ---p 0000001d 00:00 33495              /lib/x86_64-linux-gnu/libz.so.1.2.11
> 7f46225fb000-7f46225fc000 r--p 0001b000 00:00 33495              /lib/x86_64-linux-gnu/libz.so.1.2.11
> 7f46225fc000-7f46225fd000 rw-p 0001c000 00:00 33495              /lib/x86_64-linux-gnu/libz.so.1.2.11
> 7f4622600000-7f4622626000 r-xp 00000000 00:00 33283              /lib/x86_64-linux-gnu/ld-2.27.so
> 7f4622626000-7f4622627000 r-xp 00026000 00:00 33283              /lib/x86_64-linux-gnu/ld-2.27.so
> 7f4622639000-7f462264f000 r--p 00000000 00:00 2001779            /usr/lib/x86_64-linux-gnu/girepository-1.0/Arrow-1.0.typelib
> 7f462264f000-7f462267d000 r--p 00000000 00:00 137788             /usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib
> 7f462267d000-7f462268c000 r--p 00000000 00:00 137790             /usr/lib/x86_64-linux-gnu/girepository-1.0/GObject-2.0.typelib
> 7f462268c000-7f4622827000 r--p 00000000 00:00 35322              /usr/lib/locale/locale-archive
> 7f4622827000-7f4622828000 r--p 00027000 00:00 33283              /lib/x86_64-linux-gnu/ld-2.27.so
> 7f4622828000-7f4622829000 rw-p 00028000 00:00 33283              /lib/x86_64-linux-gnu/ld-2.27.so
> 7f4622829000-7f462282a000 rw-p 00000000 00:00 0
> 7f462282c000-7f4622880000 r--p 00000000 00:00 137791             /usr/lib/x86_64-linux-gnu/girepository-1.0/Gio-2.0.typelib
> 7f4622880000-7f4622981000 rw-p 00000000 00:00 0
> 7f462298f000-7f46229c0000 r--p 00000000 00:00 35311              /usr/lib/locale/C.UTF-8/LC_CTYPE
> 7f46229c0000-7f46229c3000 rw-p 00000000 00:00 0
> 7f46229d0000-7f46229d2000 rw-p 00000000 00:00 0
> 7f46229e0000-7f46229e2000 rw-p 00000000 00:00 0
> 7f46229ef000-7f46229f0000 r--p 00000000 00:00 35315              /usr/lib/locale/C.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES
> 7f46229f0000-7f46229f7000 r--s 00000000 00:00 137779             /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache
> 7f4622a00000-7f4622d78000 r-xp 00000000 00:00 453996             /usr/local/bin/ruby
> 7f4622d78000-7f4622d79000 r-xp 00378000 00:00 453996             /usr/local/bin/ruby
> 7f4622f78000-7f4622f7e000 r--p 00378000 00:00 453996             /usr/local/bin/ruby
> 7f4622f7e000-7f4622f7f000 rw-p 0037e000 00:00 453996             /usr/local/bin/ruby
> 7f4622f7f000-7f4622f90000 rw-p 00000000 00:00 0
> 7fffd22e4000-7fffd2ef6000 rw-p 00000000 00:00 0                  [heap]
> 7fffda434000-7fffdac34000 rw-p 00000000 00:00 0                  [stack]
> 7fffdaf55000-7fffdaf56000 r-xp 00000000 00:00 0                  [vdso]
> [NOTE]
> You may have encountered a bug in the Ruby interpreter or extension libraries.
> Bug reports are welcome.
> For details: https://www.ruby-lang.org/bugreport.htmll{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)