Browse Source

HPCC-14997 Error 'First parameter of FETCH should be a disk file'

remove accidental commit
add regression program
Shamser Ahmed 9 years ago
parent
commit
ea079ca192
2 changed files with 56 additions and 1 deletions
  1. 55 0
      ecl/regress/fetchinfunc.ecl
  2. 1 1
      esp/src/Visualization

+ 55 - 0
ecl/regress/fetchinfunc.ecl

@@ -0,0 +1,55 @@
+/*##############################################################################
+
+    HPCC SYSTEMS software Copyright (C) 2014 HPCC Systems®.
+
+    Licensed under the Apache License, Version 2.0 (the "License");
+    you may not use this file except in compliance with the License.
+    You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+############################################################################## */
+
+#option ('targetClusterType', 'roxie');
+
+import sq;
+sq.declareCommon();
+
+//UseStandardFiles
+
+//Daft test of fetch retrieving a dataset
+myPeople := sqSimplePersonBookDs(surname <> '');
+
+recfp := {unsigned8 rfpos, sqSimplePersonBookDs};
+
+recfp makeRec3(sqSimplePersonBookDs L, myPeople R) := TRANSFORM
+    self.rfpos := R.filepos;
+    self.books := L.books+R.books;
+    self := L;
+END;
+
+// temporary hack to get around codegen optimizing platform(),once call into global (and therefore hthor) context.
+nononcelib :=
+    SERVICE
+varstring platform() : library='graph', include='eclhelper.hpp', ctxmethod, entrypoint='getPlatform';
+    END;
+
+recordof(sqSimplePersonBookDs) removeFp(recfp l) := TRANSFORM
+    SELF := l;
+END;
+sortIt(dataset(recfp) ds) := FUNCTION
+    RETURN IF(nononcelib.platform() = 'thor', PROJECT(SORT(ds, rfpos),removeFp(LEFT)), PROJECT(ds,removeFp(LEFT)));
+END;
+
+fetchit (dataset(sqSimplePersonBookExRec) ds, string sname) := FUNCTION
+   return fetch(ds, ds(surname=sname), right.filepos, makeRec3(left,right));
+END;
+
+fetched := fetchit( sqSimplePersonBookDs, 'Halliday' );
+
+output(sortIt(fetched));

+ 1 - 1
esp/src/Visualization

@@ -1 +1 @@
-Subproject commit ae58f3281e6c48d30866cf7664db468b3f12cc14
+Subproject commit a40abcd1b85efe2802f5c5cba1c3fa529ce01af3