embulk-parser-msgpack 0.1.0 → 0.1.1
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 651733620b689cbaff3cfb29aa4776090567c18d
|
|
4
|
+
data.tar.gz: 6568a9d2a93865f94e934d6b72cc226b425a8693
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 796f136687098fefb2154bcec3e9a749b969ece86e034410110d1328309583b813173c73dd6063439631844c89b4ad683ec53b5c95301a28bdf5cf38511792c2
|
|
7
|
+
data.tar.gz: 95713a93815c1becd6cf161bb8bcff07fd1e1f81f912a9c315fb88557dda995f6c5702095bffcd4c62950424439249e66bf46bf3cc356c4bfaafd9bdc0f48811
|
data/ChangeLog
CHANGED
data/build.gradle
CHANGED
|
Binary file
|
|
@@ -408,7 +408,9 @@ public class MsgpackParserPlugin
|
|
|
408
408
|
unpacker.skipValue();
|
|
409
409
|
continue;
|
|
410
410
|
}
|
|
411
|
-
|
|
411
|
+
// TODO optimize
|
|
412
|
+
//MessageBuffer key = unpacker.readPayloadAsReference(unpacker.unpackRawStringHeader());
|
|
413
|
+
String key = new String(unpacker.readPayload(unpacker.unpackRawStringHeader()));
|
|
412
414
|
DynamicColumnSetter setter = columnSetters.get(key);
|
|
413
415
|
if (setter != null) {
|
|
414
416
|
unpackToSetter(unpacker, setter);
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embulk-parser-msgpack
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sadayuki Furuhashi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-08-
|
|
11
|
+
date: 2015-08-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -58,7 +58,7 @@ files:
|
|
|
58
58
|
- lib/embulk/parser/msgpack.rb
|
|
59
59
|
- src/main/java/org/embulk/parser/msgpack/MsgpackParserPlugin.java
|
|
60
60
|
- src/test/java/org/embulk/parser/TestMsgpackParserPlugin.java
|
|
61
|
-
- classpath/embulk-parser-msgpack-0.1.
|
|
61
|
+
- classpath/embulk-parser-msgpack-0.1.1.jar
|
|
62
62
|
- classpath/msgpack-core-0.7.0-M6.jar
|
|
63
63
|
homepage: https://github.com/frsyuki/embulk-parser-msgpack
|
|
64
64
|
licenses:
|
|
Binary file
|