embulk-output-utf8parquet 1.0.1 → 1.0.2
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/LICENSE.txt +21 -0
- data/build.gradle +91 -0
- data/build/classes/main/org/embulk/output/EmbulkWriteSupport$ParquetColumnVisitor.class +0 -0
- data/build/classes/main/org/embulk/output/EmbulkWriteSupport$SchemaConvertColumnVisitor.class +0 -0
- data/build/classes/main/org/embulk/output/EmbulkWriteSupport$SchemaConvertColumnVisitorWithUTF8.class +0 -0
- data/build/classes/main/org/embulk/output/EmbulkWriteSupport.class +0 -0
- data/build/classes/main/org/embulk/output/EmbulkWriterBuilder.class +0 -0
- data/build/classes/main/org/embulk/output/ParquetOutputPlugin$ParquetTransactionalPageOutput.class +0 -0
- data/build/classes/main/org/embulk/output/ParquetOutputPlugin$PluginTask.class +0 -0
- data/build/classes/main/org/embulk/output/ParquetOutputPlugin$TimestampColumnOption.class +0 -0
- data/build/classes/main/org/embulk/output/ParquetOutputPlugin.class +0 -0
- data/build/classes/test/org/embulk/output/ParquetOutputPluginTest.class +0 -0
- data/build/gemspec +19 -0
- data/build/libs/embulk-output-utf8parquet-1.0.0.jar +0 -0
- data/build/libs/embulk-output-utf8parquet-1.0.1.jar +0 -0
- data/build/reports/checkstyle/main.html +119 -0
- data/build/reports/checkstyle/main.xml +9 -0
- data/build/reports/checkstyle/test.html +99 -0
- data/build/reports/checkstyle/test.xml +5 -0
- data/build/reports/tests/test/classes/org.embulk.output.ParquetOutputPluginTest.html +106 -0
- data/build/reports/tests/test/css/base-style.css +179 -0
- data/build/reports/tests/test/css/style.css +84 -0
- data/build/reports/tests/test/index.html +132 -0
- data/build/reports/tests/test/js/report.js +194 -0
- data/build/reports/tests/test/packages/org.embulk.output.html +103 -0
- data/build/test-results/test/TEST-org.embulk.output.ParquetOutputPluginTest.xml +9 -0
- data/build/test-results/test/binary/output.bin +0 -0
- data/build/test-results/test/binary/output.bin.idx +0 -0
- data/build/test-results/test/binary/results.bin +0 -0
- data/build/tmp/jar/MANIFEST.MF +2 -0
- data/classpath/embulk-output-utf8parquet-1.0.2.jar +0 -0
- data/config/checkstyle/checkstyle.xml +128 -0
- data/config/checkstyle/default.xml +108 -0
- data/gradle/wrapper/gradle-wrapper.jar +0 -0
- data/gradle/wrapper/gradle-wrapper.properties +6 -0
- data/gradlew +164 -0
- data/gradlew.bat +90 -0
- data/lib/embulk/output/utf8parquet.rb +3 -0
- data/src/main/java/org/embulk/output/EmbulkWriteSupport.java +215 -0
- data/src/main/java/org/embulk/output/EmbulkWriterBuilder.java +37 -0
- data/src/main/java/org/embulk/output/ParquetOutputPlugin.java +236 -0
- data/src/test/java/org/embulk/output/ParquetOutputPluginTest.java +70 -0
- metadata +115 -73
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e545efc6a3967a1f30bfaff47925ac8e60137b7b
|
4
|
+
data.tar.gz: 49ddf54b117b742794ff65b66446e040409d4461
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c933c32ce3ad8bc03077a4eca2ec4562b46d4316a0d7a77c43bdf3cd1af422ea5f5d464e146c2fd8d7f5ee400dbf10f5d145c7dd718bd9389e5c741957769db
|
7
|
+
data.tar.gz: dd6077a6ba4c1889ab00bcb693b6266ce77384fec489b7f6a7df919defd032dfab00b71b7536229d9f6d4c991bbecb75b334307892ac80d008e1ec666cff31eb
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
|
2
|
+
MIT License
|
3
|
+
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
5
|
+
a copy of this software and associated documentation files (the
|
6
|
+
"Software"), to deal in the Software without restriction, including
|
7
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
8
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
9
|
+
permit persons to whom the Software is furnished to do so, subject to
|
10
|
+
the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be
|
13
|
+
included in all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
16
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
17
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
18
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
19
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
20
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
21
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/build.gradle
ADDED
@@ -0,0 +1,91 @@
|
|
1
|
+
plugins {
|
2
|
+
id "com.jfrog.bintray" version "1.1"
|
3
|
+
id "com.github.jruby-gradle.base" version "0.1.5"
|
4
|
+
id "java"
|
5
|
+
id "checkstyle"
|
6
|
+
}
|
7
|
+
import com.github.jrubygradle.JRubyExec
|
8
|
+
repositories {
|
9
|
+
mavenCentral()
|
10
|
+
jcenter()
|
11
|
+
}
|
12
|
+
configurations {
|
13
|
+
provided
|
14
|
+
runtime.exclude group: "org.slf4j", module: "slf4j-log4j12"
|
15
|
+
}
|
16
|
+
|
17
|
+
version = "1.0.2"
|
18
|
+
|
19
|
+
sourceCompatibility = 1.7
|
20
|
+
|
21
|
+
targetCompatibility = 1.7
|
22
|
+
|
23
|
+
dependencies {
|
24
|
+
compile "org.embulk:embulk-core:0.8.28"
|
25
|
+
provided "org.embulk:embulk-core:0.8.28"
|
26
|
+
|
27
|
+
compile "org.apache.parquet:parquet-hadoop:1.8.1"
|
28
|
+
compile "org.apache.hadoop:hadoop-client:2.7.1"
|
29
|
+
compile "org.apache.hadoop:hadoop-aws:2.7.1"
|
30
|
+
compile "org.xerial.snappy:snappy-java:1.1.1.6"
|
31
|
+
|
32
|
+
testCompile "junit:junit:4.+"
|
33
|
+
testCompile "org.embulk:embulk-core:0.8.28:tests"
|
34
|
+
testCompile "org.embulk:embulk-standards:0.8.28"
|
35
|
+
}
|
36
|
+
|
37
|
+
task classpath(type: Copy, dependsOn: ["jar"]) {
|
38
|
+
doFirst { file("classpath").deleteDir() }
|
39
|
+
from (configurations.runtime - configurations.provided + files(jar.archivePath))
|
40
|
+
into "classpath"
|
41
|
+
}
|
42
|
+
clean { delete 'classpath' }
|
43
|
+
|
44
|
+
checkstyle {
|
45
|
+
configFile = file("${project.rootDir}/config/checkstyle/checkstyle.xml")
|
46
|
+
toolVersion = '6.14.1'
|
47
|
+
}
|
48
|
+
checkstyleMain {
|
49
|
+
configFile = file("${project.rootDir}/config/checkstyle/default.xml")
|
50
|
+
ignoreFailures = true
|
51
|
+
}
|
52
|
+
checkstyleTest {
|
53
|
+
configFile = file("${project.rootDir}/config/checkstyle/default.xml")
|
54
|
+
ignoreFailures = true
|
55
|
+
}
|
56
|
+
task checkstyle(type: Checkstyle) {
|
57
|
+
classpath = sourceSets.main.output + sourceSets.test.output
|
58
|
+
source = sourceSets.main.allJava + sourceSets.test.allJava
|
59
|
+
}
|
60
|
+
task gem(type: JRubyExec, dependsOn: ["build", "gemspec", "classpath"]) {
|
61
|
+
jrubyArgs "-rrubygems/gem_runner", "-eGem::GemRunner.new.run(ARGV)", "build"
|
62
|
+
script "build/gemspec"
|
63
|
+
doLast { ant.move(file: "${project.name}-${project.version}.gem", todir: "pkg") }
|
64
|
+
}
|
65
|
+
|
66
|
+
task gemPush(type: JRubyExec, dependsOn: ["gem"]) {
|
67
|
+
jrubyArgs "-rrubygems/gem_runner", "-eGem::GemRunner.new.run(ARGV)", "push"
|
68
|
+
script "pkg/${project.name}-${project.version}.gem"
|
69
|
+
}
|
70
|
+
|
71
|
+
task gemspec << { file("build/gemspec").write($/
|
72
|
+
Gem::Specification.new do |spec|
|
73
|
+
spec.name = "${project.name}"
|
74
|
+
spec.version = "${project.version}"
|
75
|
+
spec.authors = ["Angelos Alexopoulos"]
|
76
|
+
spec.summary = %[Parquet output plugin for Embulk with UTF8 support]
|
77
|
+
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.]
|
78
|
+
spec.email = ["alexopoulos7@gmail.com"]
|
79
|
+
spec.licenses = ["MIT"]
|
80
|
+
spec.homepage = "https://github.com/alexopoulos7/embulk-output-utf8parquet"
|
81
|
+
|
82
|
+
spec.files = `git ls-files`.split("\n") + Dir["classpath/*.jar"]
|
83
|
+
spec.test_files = spec.files.grep(%r"^(test|spec)/")
|
84
|
+
spec.require_paths = ["lib"]
|
85
|
+
|
86
|
+
#spec.add_dependency 'YOUR_GEM_DEPENDENCY', ['~> YOUR_GEM_DEPENDENCY_VERSION']
|
87
|
+
spec.add_development_dependency 'bundler', ['~> 1.0']
|
88
|
+
spec.add_development_dependency 'rake', ['>= 10.0']
|
89
|
+
end
|
90
|
+
/$)
|
91
|
+
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/build/classes/main/org/embulk/output/ParquetOutputPlugin$ParquetTransactionalPageOutput.class
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/build/gemspec
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
|
2
|
+
Gem::Specification.new do |spec|
|
3
|
+
spec.name = "embulk-output-utf8parquet"
|
4
|
+
spec.version = "1.0.2"
|
5
|
+
spec.authors = ["Angelos Alexopoulos"]
|
6
|
+
spec.summary = %[Parquet output plugin for Embulk with UTF8 support]
|
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.]
|
8
|
+
spec.email = ["alexopoulos7@gmail.com"]
|
9
|
+
spec.licenses = ["MIT"]
|
10
|
+
spec.homepage = "https://github.com/alexopoulos7/embulk-output-utf8parquet"
|
11
|
+
|
12
|
+
spec.files = `git ls-files`.split("\n") + Dir["classpath/*.jar"]
|
13
|
+
spec.test_files = spec.files.grep(%r"^(test|spec)/")
|
14
|
+
spec.require_paths = ["lib"]
|
15
|
+
|
16
|
+
#spec.add_dependency 'YOUR_GEM_DEPENDENCY', ['~> YOUR_GEM_DEPENDENCY_VERSION']
|
17
|
+
spec.add_development_dependency 'bundler', ['~> 1.0']
|
18
|
+
spec.add_development_dependency 'rake', ['>= 10.0']
|
19
|
+
end
|
Binary file
|
Binary file
|
@@ -0,0 +1,119 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
4
|
+
<style type="text/css">
|
5
|
+
.bannercell {
|
6
|
+
border: 0px;
|
7
|
+
padding: 0px;
|
8
|
+
}
|
9
|
+
body {
|
10
|
+
margin-left: 10;
|
11
|
+
margin-right: 10;
|
12
|
+
font:normal 80% arial,helvetica,sanserif;
|
13
|
+
background-color:#FFFFFF;
|
14
|
+
color:#000000;
|
15
|
+
}
|
16
|
+
.a td {
|
17
|
+
background: #efefef;
|
18
|
+
}
|
19
|
+
.b td {
|
20
|
+
background: #fff;
|
21
|
+
}
|
22
|
+
th, td {
|
23
|
+
text-align: left;
|
24
|
+
vertical-align: top;
|
25
|
+
}
|
26
|
+
th {
|
27
|
+
font-weight:bold;
|
28
|
+
background: #ccc;
|
29
|
+
color: black;
|
30
|
+
}
|
31
|
+
table, th, td {
|
32
|
+
font-size:100%;
|
33
|
+
border: none
|
34
|
+
}
|
35
|
+
table.log tr td, tr th {
|
36
|
+
|
37
|
+
}
|
38
|
+
h2 {
|
39
|
+
font-weight:bold;
|
40
|
+
font-size:140%;
|
41
|
+
margin-bottom: 5;
|
42
|
+
}
|
43
|
+
h3 {
|
44
|
+
font-size:100%;
|
45
|
+
font-weight:bold;
|
46
|
+
background: #525D76;
|
47
|
+
color: white;
|
48
|
+
text-decoration: none;
|
49
|
+
padding: 5px;
|
50
|
+
margin-right: 2px;
|
51
|
+
margin-left: 2px;
|
52
|
+
margin-bottom: 0;
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
<body>
|
57
|
+
<a name="top"></a>
|
58
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
59
|
+
<tr>
|
60
|
+
<td class="bannercell" rowspan="2"></td><td class="text-align:right">
|
61
|
+
<h2>CheckStyle Audit</h2>
|
62
|
+
</td>
|
63
|
+
</tr>
|
64
|
+
<tr>
|
65
|
+
<td class="text-align:right">Designed for use with <a href="http://checkstyle.sourceforge.net/">CheckStyle</a> and <a href="http://jakarta.apache.org">Ant</a>.</td>
|
66
|
+
</tr>
|
67
|
+
</table>
|
68
|
+
<hr size="1">
|
69
|
+
<h3>Summary</h3>
|
70
|
+
<table class="log" border="0" cellpadding="5" cellspacing="2" width="100%">
|
71
|
+
<tr>
|
72
|
+
<th>Files</th><th>Errors</th>
|
73
|
+
</tr>
|
74
|
+
<tr class="a">
|
75
|
+
<td>3</td><td>0</td>
|
76
|
+
</tr>
|
77
|
+
</table>
|
78
|
+
<hr size="1" width="100%" align="left">
|
79
|
+
<h3>Files</h3>
|
80
|
+
<table class="log" border="0" cellpadding="5" cellspacing="2" width="100%">
|
81
|
+
<tr>
|
82
|
+
<th>Name</th><th>Errors</th>
|
83
|
+
</tr>
|
84
|
+
<tr class="a">
|
85
|
+
<td><a href="#f-/Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/main/java/org/embulk/output/EmbulkWriteSupport.java">/Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/main/java/org/embulk/output/EmbulkWriteSupport.java</a></td><td>0</td>
|
86
|
+
</tr>
|
87
|
+
<tr class="b">
|
88
|
+
<td><a href="#f-/Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/main/java/org/embulk/output/EmbulkWriterBuilder.java">/Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/main/java/org/embulk/output/EmbulkWriterBuilder.java</a></td><td>0</td>
|
89
|
+
</tr>
|
90
|
+
<tr class="a">
|
91
|
+
<td><a href="#f-/Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/main/java/org/embulk/output/ParquetOutputPlugin.java">/Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/main/java/org/embulk/output/ParquetOutputPlugin.java</a></td><td>0</td>
|
92
|
+
</tr>
|
93
|
+
</table>
|
94
|
+
<hr size="1" width="100%" align="left">
|
95
|
+
<a name="f-/Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/main/java/org/embulk/output/EmbulkWriteSupport.java"></a>
|
96
|
+
<h3>File /Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/main/java/org/embulk/output/EmbulkWriteSupport.java</h3>
|
97
|
+
<table class="log" border="0" cellpadding="5" cellspacing="2" width="100%">
|
98
|
+
<tr>
|
99
|
+
<th>Error Description</th><th>Line</th>
|
100
|
+
</tr>
|
101
|
+
</table>
|
102
|
+
<a href="#top">Back to top</a><a name="f-/Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/main/java/org/embulk/output/EmbulkWriterBuilder.java"></a>
|
103
|
+
<h3>File /Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/main/java/org/embulk/output/EmbulkWriterBuilder.java</h3>
|
104
|
+
<table class="log" border="0" cellpadding="5" cellspacing="2" width="100%">
|
105
|
+
<tr>
|
106
|
+
<th>Error Description</th><th>Line</th>
|
107
|
+
</tr>
|
108
|
+
</table>
|
109
|
+
<a href="#top">Back to top</a><a name="f-/Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/main/java/org/embulk/output/ParquetOutputPlugin.java"></a>
|
110
|
+
<h3>File /Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/main/java/org/embulk/output/ParquetOutputPlugin.java</h3>
|
111
|
+
<table class="log" border="0" cellpadding="5" cellspacing="2" width="100%">
|
112
|
+
<tr>
|
113
|
+
<th>Error Description</th><th>Line</th>
|
114
|
+
</tr>
|
115
|
+
</table>
|
116
|
+
<a href="#top">Back to top</a>
|
117
|
+
<hr size="1" width="100%" align="left">
|
118
|
+
</body>
|
119
|
+
</html>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<checkstyle version="6.14.1">
|
3
|
+
<file name="/Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/main/java/org/embulk/output/EmbulkWriteSupport.java">
|
4
|
+
</file>
|
5
|
+
<file name="/Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/main/java/org/embulk/output/EmbulkWriterBuilder.java">
|
6
|
+
</file>
|
7
|
+
<file name="/Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/main/java/org/embulk/output/ParquetOutputPlugin.java">
|
8
|
+
</file>
|
9
|
+
</checkstyle>
|
@@ -0,0 +1,99 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
4
|
+
<style type="text/css">
|
5
|
+
.bannercell {
|
6
|
+
border: 0px;
|
7
|
+
padding: 0px;
|
8
|
+
}
|
9
|
+
body {
|
10
|
+
margin-left: 10;
|
11
|
+
margin-right: 10;
|
12
|
+
font:normal 80% arial,helvetica,sanserif;
|
13
|
+
background-color:#FFFFFF;
|
14
|
+
color:#000000;
|
15
|
+
}
|
16
|
+
.a td {
|
17
|
+
background: #efefef;
|
18
|
+
}
|
19
|
+
.b td {
|
20
|
+
background: #fff;
|
21
|
+
}
|
22
|
+
th, td {
|
23
|
+
text-align: left;
|
24
|
+
vertical-align: top;
|
25
|
+
}
|
26
|
+
th {
|
27
|
+
font-weight:bold;
|
28
|
+
background: #ccc;
|
29
|
+
color: black;
|
30
|
+
}
|
31
|
+
table, th, td {
|
32
|
+
font-size:100%;
|
33
|
+
border: none
|
34
|
+
}
|
35
|
+
table.log tr td, tr th {
|
36
|
+
|
37
|
+
}
|
38
|
+
h2 {
|
39
|
+
font-weight:bold;
|
40
|
+
font-size:140%;
|
41
|
+
margin-bottom: 5;
|
42
|
+
}
|
43
|
+
h3 {
|
44
|
+
font-size:100%;
|
45
|
+
font-weight:bold;
|
46
|
+
background: #525D76;
|
47
|
+
color: white;
|
48
|
+
text-decoration: none;
|
49
|
+
padding: 5px;
|
50
|
+
margin-right: 2px;
|
51
|
+
margin-left: 2px;
|
52
|
+
margin-bottom: 0;
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
<body>
|
57
|
+
<a name="top"></a>
|
58
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
59
|
+
<tr>
|
60
|
+
<td class="bannercell" rowspan="2"></td><td class="text-align:right">
|
61
|
+
<h2>CheckStyle Audit</h2>
|
62
|
+
</td>
|
63
|
+
</tr>
|
64
|
+
<tr>
|
65
|
+
<td class="text-align:right">Designed for use with <a href="http://checkstyle.sourceforge.net/">CheckStyle</a> and <a href="http://jakarta.apache.org">Ant</a>.</td>
|
66
|
+
</tr>
|
67
|
+
</table>
|
68
|
+
<hr size="1">
|
69
|
+
<h3>Summary</h3>
|
70
|
+
<table class="log" border="0" cellpadding="5" cellspacing="2" width="100%">
|
71
|
+
<tr>
|
72
|
+
<th>Files</th><th>Errors</th>
|
73
|
+
</tr>
|
74
|
+
<tr class="a">
|
75
|
+
<td>1</td><td>0</td>
|
76
|
+
</tr>
|
77
|
+
</table>
|
78
|
+
<hr size="1" width="100%" align="left">
|
79
|
+
<h3>Files</h3>
|
80
|
+
<table class="log" border="0" cellpadding="5" cellspacing="2" width="100%">
|
81
|
+
<tr>
|
82
|
+
<th>Name</th><th>Errors</th>
|
83
|
+
</tr>
|
84
|
+
<tr class="a">
|
85
|
+
<td><a href="#f-/Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/test/java/org/embulk/output/ParquetOutputPluginTest.java">/Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/test/java/org/embulk/output/ParquetOutputPluginTest.java</a></td><td>0</td>
|
86
|
+
</tr>
|
87
|
+
</table>
|
88
|
+
<hr size="1" width="100%" align="left">
|
89
|
+
<a name="f-/Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/test/java/org/embulk/output/ParquetOutputPluginTest.java"></a>
|
90
|
+
<h3>File /Users/angelosalexopoulos/Desktop/Upwork/work/DataPlatform/embulk-output-utf8parquet/src/test/java/org/embulk/output/ParquetOutputPluginTest.java</h3>
|
91
|
+
<table class="log" border="0" cellpadding="5" cellspacing="2" width="100%">
|
92
|
+
<tr>
|
93
|
+
<th>Error Description</th><th>Line</th>
|
94
|
+
</tr>
|
95
|
+
</table>
|
96
|
+
<a href="#top">Back to top</a>
|
97
|
+
<hr size="1" width="100%" align="left">
|
98
|
+
</body>
|
99
|
+
</html>
|
@@ -0,0 +1,106 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
5
|
+
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
6
|
+
<title>Test results - Class org.embulk.output.ParquetOutputPluginTest</title>
|
7
|
+
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
8
|
+
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
9
|
+
<script src="../js/report.js" type="text/javascript"></script>
|
10
|
+
</head>
|
11
|
+
<body>
|
12
|
+
<div id="content">
|
13
|
+
<h1>Class org.embulk.output.ParquetOutputPluginTest</h1>
|
14
|
+
<div class="breadcrumbs">
|
15
|
+
<a href="../index.html">all</a> >
|
16
|
+
<a href="../packages/org.embulk.output.html">org.embulk.output</a> > ParquetOutputPluginTest</div>
|
17
|
+
<div id="summary">
|
18
|
+
<table>
|
19
|
+
<tr>
|
20
|
+
<td>
|
21
|
+
<div class="summaryGroup">
|
22
|
+
<table>
|
23
|
+
<tr>
|
24
|
+
<td>
|
25
|
+
<div class="infoBox" id="tests">
|
26
|
+
<div class="counter">3</div>
|
27
|
+
<p>tests</p>
|
28
|
+
</div>
|
29
|
+
</td>
|
30
|
+
<td>
|
31
|
+
<div class="infoBox" id="failures">
|
32
|
+
<div class="counter">0</div>
|
33
|
+
<p>failures</p>
|
34
|
+
</div>
|
35
|
+
</td>
|
36
|
+
<td>
|
37
|
+
<div class="infoBox" id="ignored">
|
38
|
+
<div class="counter">0</div>
|
39
|
+
<p>ignored</p>
|
40
|
+
</div>
|
41
|
+
</td>
|
42
|
+
<td>
|
43
|
+
<div class="infoBox" id="duration">
|
44
|
+
<div class="counter">0.296s</div>
|
45
|
+
<p>duration</p>
|
46
|
+
</div>
|
47
|
+
</td>
|
48
|
+
</tr>
|
49
|
+
</table>
|
50
|
+
</div>
|
51
|
+
</td>
|
52
|
+
<td>
|
53
|
+
<div class="infoBox success" id="successRate">
|
54
|
+
<div class="percent">100%</div>
|
55
|
+
<p>successful</p>
|
56
|
+
</div>
|
57
|
+
</td>
|
58
|
+
</tr>
|
59
|
+
</table>
|
60
|
+
</div>
|
61
|
+
<div id="tabs">
|
62
|
+
<ul class="tabLinks">
|
63
|
+
<li>
|
64
|
+
<a href="#tab0">Tests</a>
|
65
|
+
</li>
|
66
|
+
</ul>
|
67
|
+
<div id="tab0" class="tab">
|
68
|
+
<h2>Tests</h2>
|
69
|
+
<table>
|
70
|
+
<thead>
|
71
|
+
<tr>
|
72
|
+
<th>Test</th>
|
73
|
+
<th>Duration</th>
|
74
|
+
<th>Result</th>
|
75
|
+
</tr>
|
76
|
+
</thead>
|
77
|
+
<tr>
|
78
|
+
<td class="success">checkColumnsRequired</td>
|
79
|
+
<td>0.046s</td>
|
80
|
+
<td class="success">passed</td>
|
81
|
+
</tr>
|
82
|
+
<tr>
|
83
|
+
<td class="success">checkDefaultValues</td>
|
84
|
+
<td>0.007s</td>
|
85
|
+
<td class="success">passed</td>
|
86
|
+
</tr>
|
87
|
+
<tr>
|
88
|
+
<td class="success">checkExtraConfigurations</td>
|
89
|
+
<td>0.243s</td>
|
90
|
+
<td class="success">passed</td>
|
91
|
+
</tr>
|
92
|
+
</table>
|
93
|
+
</div>
|
94
|
+
</div>
|
95
|
+
<div id="footer">
|
96
|
+
<p>
|
97
|
+
<div>
|
98
|
+
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
99
|
+
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
100
|
+
</label>
|
101
|
+
</div>Generated by
|
102
|
+
<a href="http://www.gradle.org">Gradle 3.2.1</a> at May 28, 2018 8:55:32 AM</p>
|
103
|
+
</div>
|
104
|
+
</div>
|
105
|
+
</body>
|
106
|
+
</html>
|