Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit4c48c0f

Browse files
committed
Fix incorrect format placeholders for Oid
1 parent57f5939 commit4c48c0f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

‎src/backend/utils/adt/jsonpath_exec.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2413,7 +2413,7 @@ executeDateTimeMethod(JsonPathExecContext *cxt, JsonPathItem *jsp,
24132413
value);
24142414
break;
24152415
default:
2416-
elog(ERROR,"type with oid %d not supported",typid);
2416+
elog(ERROR,"type with oid %u not supported",typid);
24172417
}
24182418

24192419
typid=DATEOID;
@@ -2445,7 +2445,7 @@ executeDateTimeMethod(JsonPathExecContext *cxt, JsonPathItem *jsp,
24452445
value);
24462446
break;
24472447
default:
2448-
elog(ERROR,"type with oid %d not supported",typid);
2448+
elog(ERROR,"type with oid %u not supported",typid);
24492449
}
24502450

24512451
/* Force the user-given time precision, if any */
@@ -2490,7 +2490,7 @@ executeDateTimeMethod(JsonPathExecContext *cxt, JsonPathItem *jsp,
24902490
value);
24912491
break;
24922492
default:
2493-
elog(ERROR,"type with oid %d not supported",typid);
2493+
elog(ERROR,"type with oid %u not supported",typid);
24942494
}
24952495

24962496
/* Force the user-given time precision, if any */
@@ -2535,7 +2535,7 @@ executeDateTimeMethod(JsonPathExecContext *cxt, JsonPathItem *jsp,
25352535
value);
25362536
break;
25372537
default:
2538-
elog(ERROR,"type with oid %d not supported",typid);
2538+
elog(ERROR,"type with oid %u not supported",typid);
25392539
}
25402540

25412541
/* Force the user-given time precision, if any */
@@ -2587,7 +2587,7 @@ executeDateTimeMethod(JsonPathExecContext *cxt, JsonPathItem *jsp,
25872587
caseTIMESTAMPTZOID:/* Nothing to do for TIMESTAMPTZ */
25882588
break;
25892589
default:
2590-
elog(ERROR,"type with oid %d not supported",typid);
2590+
elog(ERROR,"type with oid %u not supported",typid);
25912591
}
25922592

25932593
/* Force the user-given time precision, if any */

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp