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

Commit81e7e71

Browse files
committed
Fix compiler warning:
int32 domainTypMod = NULL;should be:int32 domainTypMod = 0;
1 parent6797ddc commit81e7e71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/backend/parser/parse_coerce.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/parser/parse_coerce.c,v 2.75 2002/07/06 20:16:36 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/parser/parse_coerce.c,v 2.76 2002/07/09 05:21:35 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -290,7 +290,7 @@ coerce_type_typmod(ParseState *pstate, Node *node,
290290
{
291291
OidbaseTypeId;
292292
OidfuncId;
293-
int32domainTypMod=NULL;
293+
int32domainTypMod=0;
294294

295295
/* If given type is a domain, use base type instead */
296296
baseTypeId=getBaseTypeTypeMod(targetTypeId,&domainTypMod);

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp