Skip to content

Commit cae7fe9

Browse files
committed
fix IS NUMERIC output
1 parent 2e17e91 commit cae7fe9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsquery_io.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ printJsQueryItem(StringInfo buf, JsQueryItem *v, bool inKey, bool printBracketes
244244
appendBinaryStringInfo(buf, "STRING", 6);
245245
break;
246246
case jbvNumeric:
247-
appendBinaryStringInfo(buf, "NUMBER", 6);
247+
appendBinaryStringInfo(buf, "NUMERIC", 7);
248248
break;
249249
case jbvBool:
250250
appendBinaryStringInfo(buf, "BOOLEAN", 7);

0 commit comments

Comments
 (0)