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
70ce98b7
Commit
70ce98b7
authored
Jul 08, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename pg_temp to pg_sorttemp so it does not conflict with temp table names.
parent
5035d7b9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
6 deletions
+9
-6
doc/TODO
doc/TODO
+5
-2
src/backend/catalog/heap.c
src/backend/catalog/heap.c
+2
-2
src/backend/storage/file/fd.c
src/backend/storage/file/fd.c
+2
-2
No files found.
doc/TODO
View file @
70ce98b7
...
...
@@ -94,6 +94,8 @@ TYPES
* Allow array on int8[]
* Remove Money type, add money formatting for decimal type
* Fix typein/out functions to not be user-callable
* Add non-large-object binary field
* Add index on NUMERIC type
VIEWS
...
...
@@ -161,7 +163,7 @@ MISC
* Show location of syntax error in query
* Redesign the function call interface to handle NULLs better(Jan)
* Document/trigger/rule so changes to pg_shadow create pg_pwd
* Missing optimizer selectivities for date, etc.
* Missing optimizer selectivities for date,
r-tree,
etc.
* Overhaul mdmgr/smgr to fix double unlinking and double opens, cleanup
* Overhaul bufmgr/lockmgr/transaction manager
* Tables that start with xinv confused to be large objects
...
...
@@ -221,7 +223,8 @@ MISC
* fix memory leak in cache code when non-existant table is referenced
* In WHERE x=3 AND x=y, add y=3
* pass atttypmod through parser in more cases(Bruce)
* remov
* remove duplicate type in/out functions for disk and net
SOURCE CODE
-----------
* Add use of 'const' for varibles in source tree
...
...
src/backend/catalog/heap.c
View file @
70ce98b7
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.8
8 1999/06/16 11:01:1
7 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.8
9 1999/07/08 02:46:3
7 momjian Exp $
*
*
* INTERFACE ROUTINES
...
...
@@ -254,7 +254,7 @@ heap_create(char *relname,
{
/* replace relname of caller */
snprintf
(
relname
,
NAMEDATALEN
,
"pg_temp.%d.%u"
,
(
int
)
MyProcPid
,
uniqueId
++
);
MyProcPid
,
uniqueId
++
);
}
/* ----------------
...
...
src/backend/storage/file/fd.c
View file @
70ce98b7
...
...
@@ -6,7 +6,7 @@
* Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $Id: fd.c,v 1.4
2 1999/05/26 12:55:51
momjian Exp $
* $Id: fd.c,v 1.4
3 1999/07/08 02:46:39
momjian Exp $
*
* NOTES:
*
...
...
@@ -670,7 +670,7 @@ OpenTemporaryFile(void)
* transaction
*/
snprintf
(
tempfilename
,
sizeof
(
tempfilename
),
"pg_
temp%d.%ld"
,
(
int
)
getpid
()
,
tempFileCounter
++
);
"pg_
sorttemp%d.%ld"
,
MyProcPid
,
tempFileCounter
++
);
/* Open the file */
#ifndef __CYGWIN32__
...
...
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