Преглед на файлове

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)
     {