1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-24 10:47:04 +03:00

Add comment for missing break in switch

For clarity, following other sites, and to silence Coverity.
This commit is contained in:
Peter Eisentraut 2012-03-12 20:55:09 +02:00
parent 9a39583264
commit c9f310d377

View File

@ -1104,6 +1104,7 @@ NUMDesc_prepare(NUMDesc *num, FormatNode *n)
case NUM_D: case NUM_D:
num->flag |= NUM_F_LDECIMAL; num->flag |= NUM_F_LDECIMAL;
num->need_locale = TRUE; num->need_locale = TRUE;
/* FALLTHROUGH */
case NUM_DEC: case NUM_DEC:
if (IS_DECIMAL(num)) if (IS_DECIMAL(num))
ereport(ERROR, ereport(ERROR,