Skip to content

Commit

Permalink
Fixed show numeric type ssl as N'u'meric
Browse files Browse the repository at this point in the history
  • Loading branch information
Mitko Iliev authored and pkleef committed Nov 20, 2023
1 parent 0098746 commit a248b34
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions libsrc/Wi/bif_explain.c
Expand Up @@ -207,6 +207,7 @@ ssl_type (state_slot_t * ssl, char * str)
case DV_DATETIME: str[0] = 't'; break;
case DV_STRING: str[0] = 's'; break;
case DV_ANY: str[0] = 'a'; break;
case DV_NUMERIC: str[0] = 'u'; break;
case DV_WIDE: case DV_LONG_WIDE:
str[0] = 'N'; break;
default: str[0] = 'x';
Expand Down

0 comments on commit a248b34

Please sign in to comment.