pgsql: Remove useless Assert

2024-01-13 Thread Peter Eisentraut
Remove useless Assert It's already included in the subsequent intVal() call. Fixup for 4f622503d6. Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/e3aa802e6f843fc8df793d2dccdafecc32fe2cfc Modified Files -- src/backend/commands/tablecmds.c | 1 - 1 file

pgsql: Remove useless Assert.

2020-08-09 Thread Tom Lane
Remove useless Assert. Testing that an unsigned variable is >= 0 is pretty pointless, as noted by Coverity and numerous buildfarm members. In passing, add comment about new uses of "volatile" --- Coverity doesn't much like that either, but it seems probably necessary. Branch -- master Detai