This is an automated email from the ASF dual-hosted git repository.

asolimando pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git


The following commit(s) were added to refs/heads/master by this push:
     new 18f5e9a  Corrected json stream property name
18f5e9a is described below

commit 18f5e9a1a3c9a47ae18357c0cb8e35efc40276df
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) {

Reply via email to