Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: create manual client for Write API #112

Merged
merged 36 commits into from Apr 3, 2020
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
66cea17
First writeapi manual client
yirutang Feb 25, 2020
4803752
Manual client with e2e
yirutang Mar 3, 2020
2a29c5f
StreamWriter library
yirutang Mar 9, 2020
9044335
ProtoSchema convert library WriteApi client library addition. This li…
yirutang Mar 16, 2020
ca67ee6
First writeapi manual client
yirutang Feb 25, 2020
efec6e2
.
yirutang Mar 16, 2020
024e6f9
incremental development
yirutang Mar 16, 2020
d694ad2
Merge branch 'work' of https://github.com/yirutang/java-bigquerystora…
yirutang Mar 18, 2020
d13d3d5
.
yirutang Mar 19, 2020
b8b6403
.
yirutang Mar 19, 2020
638959a
.
yirutang Mar 19, 2020
9147e96
.
yirutang Mar 19, 2020
eff0a2a
feat: create manual java client for writeapi
yirutang Mar 19, 2020
19c5449
Merge branch 'work' of https://github.com/yirutang/java-bigquerystora…
yirutang Mar 19, 2020
438b864
feat: add integration test final verification.
yirutang Mar 19, 2020
f8624be
.
yirutang Mar 20, 2020
05935b7
.
yirutang Mar 20, 2020
2050f50
Merge branch 'work' of github.com:yirutang/java-bigquerystorage into …
yirutang Mar 23, 2020
bb7578c
Merge branch 'work' of github.com:yirutang/java-bigquerystorage into …
yirutang Mar 23, 2020
4a1e3ce
.
yirutang Mar 24, 2020
9446f5e
Merge branch 'work' of github.com:yirutang/java-bigquerystorage into …
yirutang Mar 24, 2020
b16697c
.
yirutang Mar 24, 2020
4acea18
.
yirutang Mar 24, 2020
2ff57ae
.
yirutang Mar 24, 2020
76622fc
avoid duplicate count++ and make it easier to read
stephaniewang526 Mar 27, 2020
4a490c4
Update google-cloud-bigquerystorage/src/main/java/com/google/cloud/bi…
yirutang Apr 1, 2020
9e21086
Update google-cloud-bigquerystorage/src/test/java/com/google/cloud/bi…
yirutang Apr 1, 2020
31542b0
Update google-cloud-bigquerystorage/src/test/java/com/google/cloud/bi…
yirutang Apr 1, 2020
c1a3f25
.
yirutang Apr 1, 2020
7f1c8e1
.
yirutang Apr 1, 2020
868ae73
.
yirutang Apr 1, 2020
58608d5
.
yirutang Apr 1, 2020
a73a72c
.
yirutang Apr 1, 2020
87b694d
.
yirutang Apr 2, 2020
3d148b3
dep: add undeclared dep in parent pom
stephaniewang526 Apr 2, 2020
f942f48
dep: remove duplicate and add undeclared
stephaniewang526 Apr 2, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions google-cloud-bigquerystorage/pom.xml
Expand Up @@ -59,6 +59,10 @@
<groupId>com.google.api</groupId>
<artifactId>api-common</artifactId>
</dependency>
<dependency>
<groupId>com.google.api</groupId>
<artifactId>gax</artifactId>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
Expand Down
Expand Up @@ -31,7 +31,12 @@
public class ProtoSchemaConverter {
private static class StructName {
public String getName() {
return "__S" + (count++);
if (count == 0) {
count++;
return "__ROOT__";
} else {
return "__S" + (count++);
}
}

private int count = 0;
Expand Down