Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
3a143367
Commit
3a143367
authored
Apr 15, 2004
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modify COPY for() loop to use attnum as a variable name, not 'i'.
parent
6c72f44c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
15 deletions
+16
-15
src/backend/commands/copy.c
src/backend/commands/copy.c
+16
-15
No files found.
src/backend/commands/copy.c
View file @
3a143367
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/commands/copy.c,v 1.2
19 2004/04/06 13:21:3
3 momjian Exp $
* $PostgreSQL: pgsql/src/backend/commands/copy.c,v 1.2
20 2004/04/15 22:36:0
3 momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -1258,6 +1258,7 @@ CopyFrom(Relation rel, List *attnumlist, bool binary, bool oids,
ExprState
**
constraintexprs
;
bool
hasConstraints
=
false
;
int
i
;
int
attnum
;
List
*
cur
;
Oid
in_func_oid
;
Datum
*
values
;
...
...
@@ -1317,39 +1318,39 @@ CopyFrom(Relation rel, List *attnumlist, bool binary, bool oids,
defexprs
=
(
ExprState
**
)
palloc
((
num_phys_attrs
+
1
)
*
sizeof
(
ExprState
*
));
constraintexprs
=
(
ExprState
**
)
palloc0
((
num_phys_attrs
+
1
)
*
sizeof
(
ExprState
*
));
for
(
i
=
0
;
i
<
num_phys_attrs
;
i
++
)
for
(
attnum
=
1
;
attnum
<=
num_phys_attrs
;
attnum
++
)
{
/* We don't need info for dropped attributes */
if
(
attr
[
i
]
->
attisdropped
)
if
(
attr
[
attnum
-
1
]
->
attisdropped
)
continue
;
/* Fetch the input function and typelem info */
if
(
binary
)
getTypeBinaryInputInfo
(
attr
[
i
]
->
atttypid
,
&
in_func_oid
,
&
elements
[
i
]);
getTypeBinaryInputInfo
(
attr
[
attnum
-
1
]
->
atttypid
,
&
in_func_oid
,
&
elements
[
attnum
-
1
]);
else
getTypeInputInfo
(
attr
[
i
]
->
atttypid
,
&
in_func_oid
,
&
elements
[
i
]);
fmgr_info
(
in_func_oid
,
&
in_functions
[
i
]);
getTypeInputInfo
(
attr
[
attnum
-
1
]
->
atttypid
,
&
in_func_oid
,
&
elements
[
attnum
-
1
]);
fmgr_info
(
in_func_oid
,
&
in_functions
[
attnum
-
1
]);
/* Get default info if needed */
if
(
!
intMember
(
i
+
1
,
attnumlist
))
if
(
!
intMember
(
attnum
,
attnumlist
))
{
/* attribute is NOT to be copied from input */
/* use default value if one exists */
Node
*
defexpr
=
build_column_default
(
rel
,
i
+
1
);
Node
*
defexpr
=
build_column_default
(
rel
,
attnum
);
if
(
defexpr
!=
NULL
)
{
defexprs
[
num_defaults
]
=
ExecPrepareExpr
((
Expr
*
)
defexpr
,
estate
);
defmap
[
num_defaults
]
=
i
;
defmap
[
num_defaults
]
=
attnum
-
1
;
num_defaults
++
;
}
}
/* If it's a domain type, set up to check domain constraints */
if
(
get_typtype
(
attr
[
i
]
->
atttypid
)
==
'd'
)
if
(
get_typtype
(
attr
[
attnum
-
1
]
->
atttypid
)
==
'd'
)
{
Param
*
prm
;
Node
*
node
;
...
...
@@ -1365,14 +1366,14 @@ CopyFrom(Relation rel, List *attnumlist, bool binary, bool oids,
prm
=
makeNode
(
Param
);
prm
->
paramkind
=
PARAM_EXEC
;
prm
->
paramid
=
0
;
prm
->
paramtype
=
getBaseType
(
attr
[
i
]
->
atttypid
);
prm
->
paramtype
=
getBaseType
(
attr
[
attnum
-
1
]
->
atttypid
);
node
=
coerce_to_domain
((
Node
*
)
prm
,
prm
->
paramtype
,
attr
[
i
]
->
atttypid
,
attr
[
attnum
-
1
]
->
atttypid
,
COERCE_IMPLICIT_CAST
);
constraintexprs
[
i
]
=
ExecPrepareExpr
((
Expr
*
)
node
,
constraintexprs
[
attnum
-
1
]
=
ExecPrepareExpr
((
Expr
*
)
node
,
estate
);
hasConstraints
=
true
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment