lib/embulk/output/bigquery/value_converter_factory.rb in embulk-output-bigquery-0.6.7 vs lib/embulk/output/bigquery/value_converter_factory.rb in embulk-output-bigquery-0.6.8

- old
+ new

@@ -286,9 +286,13 @@ } when 'RECORD' Proc.new {|val| val } + when 'JSON' + Proc.new {|val| + val + } else raise NotSupportedType, "cannot take column type #{type} for json column" end end end