diff --git a/src/modules/Postgres/pgresult.c b/src/modules/Postgres/pgresult.c index d1374d5b512253a8fd86336fe0e356a84130932d..0172cd3201152e3847ea00595b20b8d7714c30b2 100644 --- a/src/modules/Postgres/pgresult.c +++ b/src/modules/Postgres/pgresult.c @@ -375,10 +375,6 @@ badresult: char *value = PQgetvalue(THIS->result, THIS->cursor, j); int len = PQgetlength(THIS->result, THIS->cursor, j); switch(PQftype(THIS->result, j)) { - /* FIXME: This code is questionable, and BPCHAROID - * and BYTEAOID are usually not available - * to Postgres frontends. - */ #if defined(CUT_TRAILING_SPACES) && defined(BPCHAROID) case BPCHAROID: for(;len>0 && value[len]==' ';len--);