embulk-output-utf8parquet 1.1.7 → 1.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gradle/3.2.1/taskArtifacts/fileHashes.bin +0 -0
- data/.gradle/3.2.1/taskArtifacts/fileSnapshots.bin +0 -0
- data/.gradle/3.2.1/taskArtifacts/taskArtifacts.bin +0 -0
- data/.gradle/3.2.1/taskArtifacts/taskArtifacts.lock +0 -0
- data/build/classes/main/org/embulk/output/EmbulkWriteSupport$ParquetColumnVisitor.class +0 -0
- data/build/classes/main/org/embulk/output/EmbulkWriteSupport$SchemaConvertColumnVisitorWithUTF8.class +0 -0
- data/build.gradle +1 -1
- data/classpath/{embulk-output-utf8parquet-1.1.7.jar → embulk-output-utf8parquet-1.1.9.jar} +0 -0
- data/embulk-output-utf8parquet.gemspec +1 -1
- data/src/main/java/org/embulk/output/EmbulkWriteSupport.java +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 11b501e1c2078e0d6d59a7930c8b43b583ac8b18
|
4
|
+
data.tar.gz: 17ba538f19bb5e89d3c1e833aa136cf6717bdfaf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2fed39f7e51fd63005e6edcd303da854906e83091b4d52e2faa9dec2c2ecb3b9ca85971d1dd90b1950aa7ef508d6ce43cd7755525f3d77051f16d10afb655053
|
7
|
+
data.tar.gz: 15d56483f904d472551cd80862f808857829973ec7137819481d7497a482ea8ead8511247b4e4a578ea793d1cbcf95967784a2735d8f003577014c3ffd313e18
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/build.gradle
CHANGED
Binary file
|
@@ -1,7 +1,7 @@
|
|
1
1
|
|
2
2
|
Gem::Specification.new do |spec|
|
3
3
|
spec.name = "embulk-output-utf8parquet"
|
4
|
-
spec.version = "1.1.
|
4
|
+
spec.version = "1.1.9"
|
5
5
|
spec.authors = ["Angelos Alexopoulos"]
|
6
6
|
spec.summary = %[Parquet output plugin for Embulk with UTF8 support]
|
7
7
|
spec.description = %[Parquet output plugin is an Embulk plugin that loads records to Parquet read by any input plugins. Search the input plugins by "embulk-input" keyword.]
|
@@ -136,7 +136,7 @@ public class EmbulkWriteSupport
|
|
136
136
|
public void jsonColumn(Column column)
|
137
137
|
{
|
138
138
|
if (!record.isNull(column)) {
|
139
|
-
|
139
|
+
consumer.addBinary(Binary.fromString(record.getJson(column).toString()));
|
140
140
|
}
|
141
141
|
// throw new UnsupportedOperationException("This plugin doesn't support json type. Please try to upgrade version of the plugin using 'embulk gem update' command. If the latest version still doesn't support json type, please contact plugin developers, or change configuration of input plugin not to use json type.");
|
142
142
|
}
|
@@ -212,6 +212,7 @@ public class EmbulkWriteSupport
|
|
212
212
|
@Override
|
213
213
|
public void jsonColumn(Column column)
|
214
214
|
{
|
215
|
+
System.out.println("Adding json utf8 column="+ column.getName());
|
215
216
|
fields.add(new PrimitiveType(Type.Repetition.OPTIONAL, PrimitiveTypeName.BINARY, column.getName(), OriginalType.UTF8));
|
216
217
|
}
|
217
218
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: embulk-output-utf8parquet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Angelos Alexopoulos
|
@@ -223,7 +223,7 @@ files:
|
|
223
223
|
- src/main/java/org/embulk/output/EmbulkWriterBuilder.java
|
224
224
|
- src/main/java/org/embulk/output/ParquetOutputPlugin.java
|
225
225
|
- src/test/java/org/embulk/output/ParquetOutputPluginTest.java
|
226
|
-
- classpath/embulk-output-utf8parquet-1.1.
|
226
|
+
- classpath/embulk-output-utf8parquet-1.1.9.jar
|
227
227
|
homepage: https://github.com/alexopoulos7/embulk-output-utf8parquet
|
228
228
|
licenses:
|
229
229
|
- MIT
|