Skip to content

Commit

Permalink
Address review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
odeke-em committed Aug 2, 2023
1 parent 16b2ce8 commit 41d3b50
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 74 deletions.
2 changes: 1 addition & 1 deletion examples/SpannerSpark.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static void main(String[] args) {


Dataset<Row> df = spark.read()
.format("spanner")
.format("cloud-spanner")
.option("table", "people")
.option("projectId", "orijtech-161805")
.option("instanceId", "oragent-ws-spanner")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
public class DefaultSource implements DataSourceRegister, RelationProvider, SchemaRelationProvider {
@Override
public String shortName() {
return "spanner";
return "cloud-spanner";
}

/*
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ public Map<String, String> properties() {

@Override
public String name() {
return "spanner";
return "cloud-spanner";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ public boolean supportsExternalMetadata() {

@Override
public String shortName() {
return "spanner";
return "cloud-spanner";
}
}

0 comments on commit 41d3b50

Please sign in to comment.