@@ -2413,7 +2413,7 @@ executeDateTimeMethod(JsonPathExecContext *cxt, JsonPathItem *jsp,
2413
2413
value );
2414
2414
break ;
2415
2415
default :
2416
- elog (ERROR , "type with oid %d not supported" , typid );
2416
+ elog (ERROR , "type with oid %u not supported" , typid );
2417
2417
}
2418
2418
2419
2419
typid = DATEOID ;
@@ -2445,7 +2445,7 @@ executeDateTimeMethod(JsonPathExecContext *cxt, JsonPathItem *jsp,
2445
2445
value );
2446
2446
break ;
2447
2447
default :
2448
- elog (ERROR , "type with oid %d not supported" , typid );
2448
+ elog (ERROR , "type with oid %u not supported" , typid );
2449
2449
}
2450
2450
2451
2451
/* Force the user-given time precision, if any */
@@ -2490,7 +2490,7 @@ executeDateTimeMethod(JsonPathExecContext *cxt, JsonPathItem *jsp,
2490
2490
value );
2491
2491
break ;
2492
2492
default :
2493
- elog (ERROR , "type with oid %d not supported" , typid );
2493
+ elog (ERROR , "type with oid %u not supported" , typid );
2494
2494
}
2495
2495
2496
2496
/* Force the user-given time precision, if any */
@@ -2535,7 +2535,7 @@ executeDateTimeMethod(JsonPathExecContext *cxt, JsonPathItem *jsp,
2535
2535
value );
2536
2536
break ;
2537
2537
default :
2538
- elog (ERROR , "type with oid %d not supported" , typid );
2538
+ elog (ERROR , "type with oid %u not supported" , typid );
2539
2539
}
2540
2540
2541
2541
/* Force the user-given time precision, if any */
@@ -2587,7 +2587,7 @@ executeDateTimeMethod(JsonPathExecContext *cxt, JsonPathItem *jsp,
2587
2587
case TIMESTAMPTZOID : /* Nothing to do for TIMESTAMPTZ */
2588
2588
break ;
2589
2589
default :
2590
- elog (ERROR , "type with oid %d not supported" , typid );
2590
+ elog (ERROR , "type with oid %u not supported" , typid );
2591
2591
}
2592
2592
2593
2593
/* Force the user-given time precision, if any */
0 commit comments