We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8536cca commit 283ba23Copy full SHA for 283ba23
1 file changed
src/delimited_to_arrays.c
@@ -169,6 +169,7 @@ AK_TPS_Resolve(AK_TypeParserState previous, AK_TypeParserState new) {
169
}
170
// numerical promotion
171
if (previous == TPS_INT) {
172
+ // this means that an empty field will not force integer to string
173
if (new == TPS_EMPTY || new == TPS_INT) return TPS_INT;
174
if (new == TPS_FLOAT) return TPS_FLOAT;
175
if (new == TPS_COMPLEX) return TPS_COMPLEX;
0 commit comments