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: sample - run a legacy SQL query #97

Merged
merged 5 commits into from Jan 14, 2020
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
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
55 changes: 55 additions & 0 deletions samples/src/main/java/com/example/bigquery/RunLegacyQuery.java
@@ -0,0 +1,55 @@
/*
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.example.bigquery;

// [START bigquery_query_legacy]
import com.google.cloud.bigquery.BigQuery;
import com.google.cloud.bigquery.BigQueryException;
import com.google.cloud.bigquery.BigQueryOptions;
import com.google.cloud.bigquery.QueryJobConfiguration;
import com.google.cloud.bigquery.TableResult;

public class RunLegacyQuery {

public static void runLegacyQuery() {
try {
// Initialize client that will be used to send requests. This client only needs to be created
// once, and can be reused for multiple requests.
BigQuery bigquery = BigQueryOptions.getDefaultInstance().getService();

String query =
"SELECT corpus FROM [bigquery-public-data:samples.shakespeare] GROUP BY corpus;";

QueryJobConfiguration queryConfig =
// To use legacy SQL syntax, set useLegacySql to true.
stephaniewang526 marked this conversation as resolved.
Show resolved Hide resolved
QueryJobConfiguration.newBuilder(query).setUseLegacySql(true).build();
stephaniewang526 marked this conversation as resolved.
Show resolved Hide resolved

// Execute the query.
TableResult result = bigquery.query(queryConfig);

// Print the results.
result
.iterateAll()
.forEach(row -> row.forEach(val -> System.out.println(val.getStringValue())));
kurtisvg marked this conversation as resolved.
Show resolved Hide resolved

System.out.println("Legacy query ran successfully");
} catch (BigQueryException | InterruptedException e) {
System.out.println("Legacy query did not run \n" + e.toString());
}
}
}
// [END bigquery_query_legacy]
Expand Up @@ -70,7 +70,7 @@ public void testCopyMultipleTables() {
CopyMultipleTables.copyMultipleTables(BIGQUERY_DATASET_NAME, generatedTableName);
assertThat(bout.toString()).contains("Table copied successfully.");

//Clean up
// Clean up
DeleteTable.deleteTable(BIGQUERY_DATASET_NAME, generatedTableName);
}
}
48 changes: 48 additions & 0 deletions samples/src/test/java/com/example/bigquery/RunLegacyQueryIT.java
@@ -0,0 +1,48 @@
/*
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.example.bigquery;

import static com.google.common.truth.Truth.assertThat;

import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;

public class RunLegacyQueryIT {
private ByteArrayOutputStream bout;
private PrintStream out;

@Before
public void setUp() {
bout = new ByteArrayOutputStream();
out = new PrintStream(bout);
System.setOut(out);
}

@After
public void tearDown() {
System.setOut(null);
}

@Test
public void testRunLegacyQuery() {
RunLegacyQuery.runLegacyQuery();
assertThat(bout.toString()).contains("Legacy query ran successfully");
}
}