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

[BEAM-10580] Eliminate nullability errors from :sdks:java:extensions:sql:expansion-service #12374

Merged
merged 2 commits into from Jul 28, 2020
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion sdks/java/extensions/sql/expansion-service/build.gradle
Expand Up @@ -16,8 +16,8 @@
* limitations under the License.
*/
plugins { id 'org.apache.beam.module' }

applyJavaNature(
enableChecker: false,
ignoreRawtypeErrors: true,
automaticModuleName: 'org.apache.beam.sdks.extensions.sql.expansion',
validateShadowJar: false,
Expand Down
Expand Up @@ -48,8 +48,8 @@ public Map<String, Class<? extends ExternalTransformBuilder>> knownBuilders() {
}

public static class Configuration {
String query;
String dialect;
String query = "";
@Nullable String dialect;

public void setQuery(String query) {
this.query = query;
Expand Down