Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SOLR-8138: Simple UI for issuing SQL queries #2381

Merged
merged 9 commits into from
Feb 18, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
html clean ups.
  • Loading branch information
epugh@opensourceconnections.com committed Feb 17, 2021
commit 74d98beac87bfa970c29d71b644a18007609eb68
16 changes: 4 additions & 12 deletions solr/webapp/web/partials/sqlquery.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
-->

<div id="sqlquery" class="clearfix">

<div id="form">
<form>
<label for="sqlexpr" title="The SQL expression string">
SQL Query (expr)
<label for="sqlexpr" title="The SQL Query">
SQL Query Statement
</label>
<textarea name="stmt" ng-model="stmt" id="sqlexp" title="The sql expression string.">search(....)</textarea>
<textarea name="stmt" ng-model="stmt" id="sqlexp"></textarea>
<button type="submit" ng-click="doQuery()">Execute</button>
<span><a href="https://lucene.apache.org/solr/guide/8_8/parallel-sql-interface.html" target="_out">syntax help</a></span>
</form>
</div>
<div id="sql-response">
Expand All @@ -32,12 +32,4 @@
<div ng-show="!sqlError" class="grid" ui-grid="gridOptions" id="sql-response"></div>

</div>


<!-- <pre class="syntax language-json">
<code ng-bind-html="response.data | highlight:json | unsafe"></code>
</pre> -->



</div>