|
From: <mrp...@us...> - 2014-03-12 22:28:08
|
Revision: 7947
http://sourceforge.net/p/bigdata/code/7947
Author: mrpersonick
Date: 2014-03-12 22:28:03 +0000 (Wed, 12 Mar 2014)
Log Message:
-----------
minor change to the full text query
Modified Paths:
--------------
branches/RDR/bigdata-war/src/html/js/workbench.js
Modified: branches/RDR/bigdata-war/src/html/js/workbench.js
===================================================================
--- branches/RDR/bigdata-war/src/html/js/workbench.js 2014-03-12 21:18:57 UTC (rev 7946)
+++ branches/RDR/bigdata-war/src/html/js/workbench.js 2014-03-12 22:28:03 UTC (rev 7947)
@@ -8,7 +8,7 @@
if(!term) {
return;
}
- var query = 'select * { ?o bds:search "' + term + '" . ?s ?p ?o . }'
+ var query = 'select ?s ?p ?o { ?o bds:search "' + term + '" . ?s ?p ?o . }'
$('#query-box').val(query);
$('#query-form').submit();
showTab('query');
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|