embulk-output-bigquery 0.1.8 → 0.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 01ec741b2dec7dc95c1ae29254e3389a7af28beb
|
|
4
|
+
data.tar.gz: 230b0712b540a250da355252437d9f4df118ac7a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d7cb7461e6b607e55c8379b65c6e2886a9249619177f8a2ab49ab0e98e44fb9db0054407e27cd52a24f923f1dc246a5f20897da16cf216bd6c8905637fb4353e
|
|
7
|
+
data.tar.gz: cda8c8537c0e34737c0f81fea0118e9fa61d0330fd8a8d1b16fd75e273587b6b1808a7590a1e4a322ebffe4ef4a5d4c002ecc02bd4df7114db090b08e3976eae
|
data/build.gradle
CHANGED
|
@@ -15,11 +15,11 @@ configurations {
|
|
|
15
15
|
sourceCompatibility = 1.7
|
|
16
16
|
targetCompatibility = 1.7
|
|
17
17
|
|
|
18
|
-
version = "0.1.
|
|
18
|
+
version = "0.1.9"
|
|
19
19
|
|
|
20
20
|
dependencies {
|
|
21
|
-
compile "org.embulk:embulk-core:0.
|
|
22
|
-
provided "org.embulk:embulk-core:0.
|
|
21
|
+
compile "org.embulk:embulk-core:0.7.1"
|
|
22
|
+
provided "org.embulk:embulk-core:0.7.1"
|
|
23
23
|
|
|
24
24
|
compile "com.google.http-client:google-http-client-jackson2:1.20.0"
|
|
25
25
|
compile "com.google.apis:google-api-services-bigquery:v2-rev205-1.20.0"
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
#Tue Aug 11 00:26:20 PDT 2015
|
|
2
2
|
distributionBase=GRADLE_USER_HOME
|
|
3
3
|
distributionPath=wrapper/dists
|
|
4
4
|
zipStoreBase=GRADLE_USER_HOME
|
|
5
5
|
zipStorePath=wrapper/dists
|
|
6
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.
|
|
6
|
+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.6-bin.zip
|
|
@@ -20,7 +20,7 @@ import org.embulk.config.ConfigException;
|
|
|
20
20
|
import org.embulk.config.ConfigDefault;
|
|
21
21
|
import org.embulk.config.ConfigSource;
|
|
22
22
|
import org.embulk.config.ConfigDiff;
|
|
23
|
-
import org.embulk.config.
|
|
23
|
+
import org.embulk.config.TaskReport;
|
|
24
24
|
import org.embulk.config.Task;
|
|
25
25
|
import org.embulk.config.TaskSource;
|
|
26
26
|
import org.embulk.spi.unit.LocalFile;
|
|
@@ -210,7 +210,7 @@ public class BigqueryOutputPlugin
|
|
|
210
210
|
@Override
|
|
211
211
|
public void cleanup(TaskSource taskSource,
|
|
212
212
|
int taskCount,
|
|
213
|
-
List<
|
|
213
|
+
List<TaskReport> successTaskReports)
|
|
214
214
|
{
|
|
215
215
|
}
|
|
216
216
|
|
|
@@ -319,9 +319,9 @@ public class BigqueryOutputPlugin
|
|
|
319
319
|
{
|
|
320
320
|
}
|
|
321
321
|
|
|
322
|
-
public
|
|
322
|
+
public TaskReport commit()
|
|
323
323
|
{
|
|
324
|
-
|
|
324
|
+
TaskReport report = Exec.newTaskReport();
|
|
325
325
|
return report;
|
|
326
326
|
}
|
|
327
327
|
};
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embulk-output-bigquery
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Satoshi Akama
|
|
@@ -62,7 +62,7 @@ files:
|
|
|
62
62
|
- src/test/java/org/embulk/output/TestBigqueryWriter.java
|
|
63
63
|
- classpath/commons-codec-1.3.jar
|
|
64
64
|
- classpath/commons-logging-1.1.1.jar
|
|
65
|
-
- classpath/embulk-output-bigquery-0.1.
|
|
65
|
+
- classpath/embulk-output-bigquery-0.1.9.jar
|
|
66
66
|
- classpath/google-api-client-1.20.0.jar
|
|
67
67
|
- classpath/google-api-services-bigquery-v2-rev205-1.20.0.jar
|
|
68
68
|
- classpath/google-http-client-1.20.0.jar
|