Skip to content

Commit

Permalink
Corrected json stream property name
Browse files Browse the repository at this point in the history
  • Loading branch information
mans2singh authored and asolimando committed Jan 18, 2022
1 parent f0bd2b2 commit 18f5e9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/apache/calcite/model/JsonView.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public class JsonView extends JsonTable {
@JsonCreator
public JsonView(
@JsonProperty(value = "name", required = true) String name,
@JsonProperty("steram") JsonStream stream,
@JsonProperty("stream") JsonStream stream,
@JsonProperty(value = "sql", required = true) Object sql,
@JsonProperty("path") @Nullable List<String> path,
@JsonProperty("modifiable") @Nullable Boolean modifiable) {
Expand Down

0 comments on commit 18f5e9a

Please sign in to comment.