You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: trunk/gcloud-java-bigquery/src/main/java/com/google/gcloud/bigquery/ExternalTableInfo.java
+5-30Lines changed: 5 additions & 30 deletions
Original file line number
Diff line number
Diff line change
@@ -26,27 +26,24 @@
26
26
* reside outside of BigQuery but can be queried as normal BigQuery tables. External tables are
27
27
* experimental and might be subject to change or removed.
28
28
*
29
-
* @see <a href="https://cloud.google.com/bigquery/federated-data-sources">Federated Data
30
-
* Sources</a>
29
+
* @see <a href="https://cloud.google.com/bigquery/federated-data-sources">Federated Data Sources
@@ -88,28 +77,19 @@ public ExternalTableInfo build() {
88
77
privateExternalTableInfo(Builderbuilder) {
89
78
super(builder);
90
79
this.configuration = builder.configuration;
91
-
this.streamingBuffer = builder.streamingBuffer;
92
80
}
93
81
94
82
/**
95
83
* Returns the data format, location and other properties of a table stored outside of BigQuery.
96
84
* This property is experimental and might be subject to change or removed.
97
85
*
98
-
* @see <a href="https://cloud.google.com/bigquery/federated-data-sources">Federated Data
99
-
* Sources</a>
86
+
* @see <a href="https://cloud.google.com/bigquery/federated-data-sources">Federated Data Sources
87
+
* </a>
100
88
*/
101
89
publicExternalDataConfigurationconfiguration() {
102
90
returnconfiguration;
103
91
}
104
92
105
-
/**
106
-
* Returns information on the table's streaming buffer if any exists. Returns {@code null} if no
107
-
* streaming buffer exists.
108
-
*/
109
-
publicStreamingBufferstreamingBuffer() {
110
-
returnstreamingBuffer;
111
-
}
112
-
113
93
/**
114
94
* Returns a builder for the {@code ExternalTableInfo} object.
115
95
*/
@@ -120,18 +100,13 @@ public Builder toBuilder() {
0 commit comments