瀏覽代碼

HPCC-12180 Fix windows build break in mysqlembed

Must return a value, or alternatively throw the exception directly.

Signed-off-by: Anthony Fishbeck <anthony.fishbeck@lexisnexis.com>
Anthony Fishbeck 10 年之前
父節點
當前提交
e82b6ed788
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      plugins/mysql/mysqlembed.cpp

+ 2 - 0
plugins/mysql/mysqlembed.cpp

@@ -718,10 +718,12 @@ public:
     virtual bool processBeginSet(const RtlFieldInfo * field, unsigned numElements, bool isAll, const byte *data)
     {
         UNSUPPORTED("SET fields");
+        return false;
     }
     virtual bool processBeginDataset(const RtlFieldInfo * field, unsigned numRows)
     {
         UNSUPPORTED("Nested datasets");
+        return false;
     }
     virtual bool processBeginRow(const RtlFieldInfo * field)
     {