This is an automated email from the ASF dual-hosted git repository. nehapawar pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git
The following commit(s) were added to refs/heads/master by this push: new 4552477 Include dateTimeFieldSpec in schema columns of Pinot Query Console (#5392) 4552477 is described below commit 45524778e34f4689625fb2e8da4da4fb423662e2 Author: Neha Pawar <neha.pawa...@gmail.com> AuthorDate: Fri May 15 10:17:26 2020 -0700 Include dateTimeFieldSpec in schema columns of Pinot Query Console (#5392) --- pinot-controller/src/main/resources/static/query/index.html | 6 ++++++ pinot-controller/src/main/resources/webapp/index.html | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/pinot-controller/src/main/resources/static/query/index.html b/pinot-controller/src/main/resources/static/query/index.html index aa142f4..3fc26cd 100644 --- a/pinot-controller/src/main/resources/static/query/index.html +++ b/pinot-controller/src/main/resources/static/query/index.html @@ -136,6 +136,12 @@ <td class="{{this.fieldType}}">{{this.dataType}}</td> </tr> {{/each}} + {{#each dateTimeFieldSpecs}} + <tr> + <td class="{{this.fieldType}}">{{this.name}}</td> + <td class="{{this.fieldType}}">{{this.dataType}}</td> + </tr> + {{/each}} {{#if timeFieldSpec}} {{#if outgoingGranularitySpec}} diff --git a/pinot-controller/src/main/resources/webapp/index.html b/pinot-controller/src/main/resources/webapp/index.html index 5401435..da93b92 100644 --- a/pinot-controller/src/main/resources/webapp/index.html +++ b/pinot-controller/src/main/resources/webapp/index.html @@ -131,6 +131,12 @@ <td class="{{this.fieldType}}">{{this.dataType}}</td> </tr> {{/each}} + {{#each dateTimeFieldSpecs}} + <tr> + <td class="{{this.fieldType}}">{{this.name}}</td> + <td class="{{this.fieldType}}">{{this.dataType}}</td> + </tr> + {{/each}} {{#if timeFieldSpec}} {{#if outgoingGranularitySpec}} --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org