This is an automated email from the ASF dual-hosted git repository. liyafan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/calcite.git
commit 83c291144c99fe92b8df0a94f884cb05b5f83ad7 Author: mans2singh <[email protected]> AuthorDate: Mon Jan 10 18:36:39 2022 -0500 Corrected json stream property name --- core/src/main/java/org/apache/calcite/model/JsonView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/apache/calcite/model/JsonView.java b/core/src/main/java/org/apache/calcite/model/JsonView.java index ff4e98b..a86c56e 100644 --- a/core/src/main/java/org/apache/calcite/model/JsonView.java +++ b/core/src/main/java/org/apache/calcite/model/JsonView.java @@ -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) {
