Browse Source

HPCC-10459 Streamed dataset support for R

Fix build break after Java streaming support merge.

Signed-off-by: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 11 years ago
parent
commit
bf8fd0a348
1 changed files with 4 additions and 5 deletions
  1. 4 5
      plugins/Rembed/Rembed.cpp

+ 4 - 5
plugins/Rembed/Rembed.cpp

@@ -220,12 +220,11 @@ public:
     {
         UNSUPPORTED("Unicode/UTF8 fields");
     }
-
-    virtual bool processBeginSet(const RtlFieldInfo * field)
+    virtual bool processBeginSet(const RtlFieldInfo * field, unsigned elements, bool isAll, const byte *data)
     {
         UNSUPPORTED("SET fields");
     }
-    virtual bool processBeginDataset(const RtlFieldInfo * field)
+    virtual bool processBeginDataset(const RtlFieldInfo * field, unsigned rows)
     {
         UNSUPPORTED("Nested datasets");
     }
@@ -343,11 +342,11 @@ public:
         UNSUPPORTED("Unicode/UTF8 fields");
     }
 
-    virtual bool processBeginSet(const RtlFieldInfo * field)
+    virtual bool processBeginSet(const RtlFieldInfo * field, unsigned elements, bool isAll, const byte *data)
     {
         UNSUPPORTED("SET fields");
     }
-    virtual bool processBeginDataset(const RtlFieldInfo * field)
+    virtual bool processBeginDataset(const RtlFieldInfo * field, unsigned rows)
     {
         UNSUPPORTED("Nested datasets");
     }