Pārlūkot izejas kodu

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 gadi atpakaļ
vecāks
revīzija
e82b6ed788
1 mainītis faili ar 2 papildinājumiem un 0 dzēšanām
  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)
     {