aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/sequence.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-12-08 20:10:19 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-12-08 20:10:19 +0000
commit90bdb64be8990dc60e47797b3d5512ea5853a305 (patch)
tree16c7717913ee7a518067a19a28b8a49e721795d9 /src/backend/commands/sequence.c
parentb44e46cfcea288c3f404b4da4456b9736b057a38 (diff)
downloadpostgresql-90bdb64be8990dc60e47797b3d5512ea5853a305.tar.gz
postgresql-90bdb64be8990dc60e47797b3d5512ea5853a305.zip
Add missing copyright and RCS identification header.
Diffstat (limited to 'src/backend/commands/sequence.c')
-rw-r--r--src/backend/commands/sequence.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/backend/commands/sequence.c b/src/backend/commands/sequence.c
index bb9659f359c..87ac198044d 100644
--- a/src/backend/commands/sequence.c
+++ b/src/backend/commands/sequence.c
@@ -3,13 +3,19 @@
* sequence.c
* PostgreSQL sequences support code.
*
+ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1994, Regents of the University of California
+ *
+ *
+ * IDENTIFICATION
+ * $Header: /cvsroot/pgsql/src/backend/commands/sequence.c,v 1.46 2000/12/08 20:10:19 tgl Exp $
+ *
*-------------------------------------------------------------------------
*/
+#include "postgres.h"
#include <ctype.h>
-#include "postgres.h"
-
#include "access/heapam.h"
#include "commands/creatinh.h"
#include "commands/sequence.h"