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
3c47cdeb
Commit
3c47cdeb
authored
Aug 19, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
From: Dan McGuirk <mcguirk@indirect.com>
fixed the spelling of 'nonexistent' in a few places...
parent
f796387b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
src/backend/commands/command.c
src/backend/commands/command.c
+2
-2
src/backend/commands/defind.c
src/backend/commands/defind.c
+3
-3
src/backend/commands/remove.c
src/backend/commands/remove.c
+3
-3
No files found.
src/backend/commands/command.c
View file @
3c47cdeb
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.
1.1.1 1996/07/09 06:21:19
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.
2 1996/08/19 01:53:37
scrappy Exp $
*
* NOTES
* The PortalExecutorHeapMemory crap needs to be eliminated
...
...
@@ -473,7 +473,7 @@ PerformAddAttribute(char *relationName,
form
=
(
TypeTupleForm
)
GETSTRUCT
(
typeTuple
);
if
(
!
HeapTupleIsValid
(
typeTuple
))
{
elog
(
WARN
,
"Add: type
\"
%s
\"
nonexist
a
nt"
,
p
);
elog
(
WARN
,
"Add: type
\"
%s
\"
nonexist
e
nt"
,
p
);
}
namestrcpy
(
&
(
attribute
->
attname
),
(
char
*
)
key
[
1
].
sk_argument
);
attribute
->
atttypid
=
typeTuple
->
t_oid
;
...
...
src/backend/commands/defind.c
View file @
3c47cdeb
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/defind.c,v 1.
2 1996/08/15 07:42:19
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/defind.c,v 1.
3 1996/08/19 01:53:38
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -504,7 +504,7 @@ GetDefaultOpClass(Oid atttypid)
*
* Exceptions:
* BadArg if name is invalid.
* "WARN" if index nonexist
a
nt.
* "WARN" if index nonexist
e
nt.
* ...
*/
void
...
...
@@ -517,7 +517,7 @@ RemoveIndex(char *name)
0
,
0
,
0
);
if
(
!
HeapTupleIsValid
(
tuple
))
{
elog
(
WARN
,
"index
\"
%s
\"
nonexist
a
nt"
,
name
);
elog
(
WARN
,
"index
\"
%s
\"
nonexist
e
nt"
,
name
);
}
if
(((
Form_pg_class
)
GETSTRUCT
(
tuple
))
->
relkind
!=
RELKIND_INDEX
)
{
...
...
src/backend/commands/remove.c
View file @
3c47cdeb
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/remove.c,v 1.
1.1.1 1996/07/09 06:21:22
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/remove.c,v 1.
2 1996/08/19 01:53:39
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -43,7 +43,7 @@
* Exceptions:
* BadArg if name is invalid.
* BadArg if type1 is invalid.
* "WARN" if operator nonexist
a
nt.
* "WARN" if operator nonexist
e
nt.
* ...
*/
void
...
...
@@ -307,7 +307,7 @@ RemoveType(char *typeName) /* type name to be removed */
*
* Exceptions:
* BadArg if name is invalid.
* "WARN" if function nonexist
a
nt.
* "WARN" if function nonexist
e
nt.
* ...
*/
void
...
...
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