]> granicus.if.org Git - postgresql/commitdiff
Fix some spurious new compiler warnings in MSVC.
authorAndres Freund <andres@anarazel.de>
Sat, 17 Nov 2018 19:41:14 +0000 (11:41 -0800)
committerAndres Freund <andres@anarazel.de>
Sat, 17 Nov 2018 19:41:14 +0000 (11:41 -0800)
Per buildfarm animal bowerbird.

Discussion: https://buildfarm.postgresql.org/cgi-bin/show_log.pl?nm=bowerbird&dt=2018-11-17%2002%3A30%3A20

src/backend/executor/execTuples.c

index b6c9bbcd9a654963ae522cee6234c00afdbfbe3e..c9523c503fb5db600cb74f112bf4c1ce073f288b 100644 (file)
@@ -132,6 +132,8 @@ static Datum
 tts_virtual_getsysattr(TupleTableSlot *slot, int attnum, bool *isnull)
 {
        elog(ERROR, "virtual tuple table slot does not have system atttributes");
+
+       return 0; /* silence compiler warnings */
 }
 
 /*
@@ -488,6 +490,8 @@ static Datum
 tts_minimal_getsysattr(TupleTableSlot *slot, int attnum, bool *isnull)
 {
        elog(ERROR, "minimal tuple table slot does not have system atttributes");
+
+       return 0; /* silence compiler warnings */
 }
 
 static void