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
352cd1f1
Commit
352cd1f1
authored
Dec 15, 2000
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove a few remaining vestiges of elog(WARN).
parent
4ea746a8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
src/backend/commands/indexcmds.c
src/backend/commands/indexcmds.c
+2
-2
src/backend/commands/remove.c
src/backend/commands/remove.c
+3
-3
src/include/commands/command.h
src/include/commands/command.h
+2
-2
No files found.
src/backend/commands/indexcmds.c
View file @
352cd1f1
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.4
2 2000/12/08 06:17:58 inoue
Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.4
3 2000/12/15 04:08:15 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -598,7 +598,7 @@ GetDefaultOpClass(Oid atttypid)
*
* Exceptions:
* BadArg if name is invalid.
* "
WARN
" if index nonexistent.
* "
ERROR
" if index nonexistent.
* ...
*/
void
...
...
src/backend/commands/remove.c
View file @
352cd1f1
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/remove.c,v 1.5
6 2000/11/20 20:36:47
tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/remove.c,v 1.5
7 2000/12/15 04:08:15
tgl Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -35,7 +35,7 @@
* Exceptions:
* BadArg if name is invalid.
* BadArg if type1 is invalid.
* "
WARN
" if operator nonexistent.
* "
ERROR
" if operator nonexistent.
* ...
*/
void
...
...
@@ -291,7 +291,7 @@ RemoveType(char *typeName) /* type name to be removed */
*
* Exceptions:
* BadArg if name is invalid.
* "
WARN
" if function nonexistent.
* "
ERROR
" if function nonexistent.
* ...
*/
void
...
...
src/include/commands/command.h
View file @
352cd1f1
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: command.h,v 1.2
3 2000/09/12 05:09:47 momjian
Exp $
* $Id: command.h,v 1.2
4 2000/12/15 04:08:15 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -24,7 +24,7 @@
*
* Exceptions:
* BadArg if forward invalid.
* "
WARN
" if portal not found.
* "
ERROR
" if portal not found.
*/
extern
void
PerformPortalFetch
(
char
*
name
,
bool
forward
,
int
count
,
char
*
tag
,
CommandDest
dest
);
...
...
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