File tree 4 files changed +11
-6
lines changed
4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.3 1996/11/08 20:45 :45 momjian Exp $
11
+ * $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.4 1996/11/11 04:54 :45 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
@@ -250,6 +250,7 @@ myinput(char* buf, int max)
250
250
}
251
251
}
252
252
253
+ #ifdef NOT_USED
253
254
char *
254
255
CurScan (void )
255
256
{
@@ -258,5 +259,7 @@ CurScan(void)
258
259
(yy_c_buf_p - &yy_current_buffer->yy_ch_buf[yy_n_chars]);
259
260
*/
260
261
}
262
+ #endif
263
+
261
264
#endif /* FLEX_SCANNER */
262
265
Original file line number Diff line number Diff line change 19
19
#include <time.h>
20
20
21
21
#include <config.h>
22
+ #include <parser/sysfunc.h>
22
23
23
24
/*
24
25
* Can't get much more obvious than this. Might need to replace localtime()
25
26
* on older systems...
26
27
*/
27
- char * Sysfunc_system_date (void )
28
+ static char * Sysfunc_system_date (void )
28
29
{
29
30
time_t cur_time_secs ;
30
31
struct tm * cur_time_expanded ;
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.17 1996/11/10 03:02:50 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.18 1996/11/11 04:54:51 momjian Exp $
11
11
*
12
12
* NOTES
13
13
* this is the "main" module of the postgres backend and
@@ -736,7 +736,7 @@ die(SIGNAL_ARGS)
736
736
}
737
737
738
738
/* signal handler for floating point exception */
739
- void
739
+ static void
740
740
FloatExceptionHandler (SIGNAL_ARGS )
741
741
{
742
742
elog (WARN , "floating point exception! the last floating point operation eit\
@@ -1257,7 +1257,7 @@ PostgresMain(int argc, char *argv[])
1257
1257
*/
1258
1258
if (IsUnderPostmaster == false) {
1259
1259
puts ("\nPOSTGRES backend interactive interface" );
1260
- puts ("$Revision: 1.17 $ $Date: 1996/11/10 03:02:50 $" );
1260
+ puts ("$Revision: 1.18 $ $Date: 1996/11/11 04:54:51 $" );
1261
1261
}
1262
1262
1263
1263
/* ----------------
Original file line number Diff line number Diff line change 9
9
*
10
10
*
11
11
* IDENTIFICATION
12
- * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.7 1996/11/10 02:25:16 bryanh Exp $
12
+ * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.8 1996/11/11 04:54:54 momjian Exp $
13
13
*
14
14
*-------------------------------------------------------------------------
15
15
*/
42
42
#include "rewrite/rewriteDefine.h"
43
43
#include "tcop/tcopdebug.h"
44
44
#include "tcop/dest.h"
45
+ #include "tcop/utility.h"
45
46
#include "fmgr.h" /* For load_file() */
46
47
47
48
#ifndef NO_SECURITY
You can’t perform that action at this time.
0 commit comments