|
From: <tob...@us...> - 2014-07-17 22:45:03
|
Revision: 8573
http://sourceforge.net/p/bigdata/code/8573
Author: tobycraig
Date: 2014-07-17 22:45:00 +0000 (Thu, 17 Jul 2014)
Log Message:
-----------
Fixed query history not recognising previously executed queries
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/html/js/workbench.js
Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/html/js/workbench.js
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/html/js/workbench.js 2014-07-17 20:58:48 UTC (rev 8572)
+++ branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/html/js/workbench.js 2014-07-17 22:45:00 UTC (rev 8573)
@@ -749,7 +749,7 @@
// see if this query is already in the history
$('#query-history tbody tr').each(function(i, row) {
- if($(row).find('.query')[0].innerText == query && $(row).find('.query-namespace').text() == NAMESPACE) {
+ if($(row).find('.query')[0].innerText == query) {
// clear the old results and set the time to now
$(row).find('.query-time').text(new Date().toISOString());
$(row).find('.query-results').text('...');
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|