File tree 3 files changed +9
-6
lines changed
3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 94
94
* Allow array on int8[]
95
95
* Remove Money type, add money formatting for decimal type
96
96
* Fix typein/out functions to not be user-callable
97
+ * Add non-large-object binary field
98
+ * Add index on NUMERIC type
97
99
98
100
VIEWS
99
101
161
163
* Show location of syntax error in query
162
164
* Redesign the function call interface to handle NULLs better(Jan)
163
165
* Document/trigger/rule so changes to pg_shadow create pg_pwd
164
- * Missing optimizer selectivities for date, etc.
166
+ * Missing optimizer selectivities for date, r-tree, etc.
165
167
* Overhaul mdmgr/smgr to fix double unlinking and double opens, cleanup
166
168
* Overhaul bufmgr/lockmgr/transaction manager
167
169
* Tables that start with xinv confused to be large objects
221
223
* fix memory leak in cache code when non-existant table is referenced
222
224
* In WHERE x=3 AND x=y, add y=3
223
225
* pass atttypmod through parser in more cases(Bruce)
224
- * remov
226
+ * remove duplicate type in/out functions for disk and net
227
+
225
228
SOURCE CODE
226
229
-----------
227
230
* Add use of 'const' for varibles in source tree
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.88 1999/06/16 11:01:17 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.89 1999/07/08 02:46:37 momjian Exp $
11
11
*
12
12
*
13
13
* INTERFACE ROUTINES
@@ -254,7 +254,7 @@ heap_create(char *relname,
254
254
{
255
255
/* replace relname of caller */
256
256
snprintf (relname , NAMEDATALEN , "pg_temp.%d.%u" ,
257
- ( int ) MyProcPid , uniqueId ++ );
257
+ MyProcPid , uniqueId ++ );
258
258
}
259
259
260
260
/* ----------------
Original file line number Diff line number Diff line change 6
6
* Copyright (c) 1994, Regents of the University of California
7
7
*
8
8
* IDENTIFICATION
9
- * $Id: fd.c,v 1.42 1999/05/26 12:55:51 momjian Exp $
9
+ * $Id: fd.c,v 1.43 1999/07/08 02:46:39 momjian Exp $
10
10
*
11
11
* NOTES:
12
12
*
@@ -670,7 +670,7 @@ OpenTemporaryFile(void)
670
670
* transaction
671
671
*/
672
672
snprintf (tempfilename , sizeof (tempfilename ),
673
- "pg_temp %d.%ld" , ( int ) getpid () , tempFileCounter ++ );
673
+ "pg_sorttemp %d.%ld" , MyProcPid , tempFileCounter ++ );
674
674
675
675
/* Open the file */
676
676
#ifndef __CYGWIN32__
You can’t perform that action at this time.
0 commit comments