aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2001-03-09 22:10:13 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2001-03-09 22:10:13 +0000
commit5490195f045a54e7a33220c3dadcd76f999ac0cf (patch)
tree8cfb3dc5c29e51277f6cfdd93eed927eed6bbf22 /src
parentedebfec803a4ef5a6bef1278d4a566bcbbb039a8 (diff)
downloadpostgresql-5490195f045a54e7a33220c3dadcd76f999ac0cf.tar.gz
postgresql-5490195f045a54e7a33220c3dadcd76f999ac0cf.zip
Don't choke on superuser names containing random punctuation.
Diffstat (limited to 'src')
-rw-r--r--src/include/catalog/pg_shadow.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/catalog/pg_shadow.h b/src/include/catalog/pg_shadow.h
index 253880486c6..e0b087a9d91 100644
--- a/src/include/catalog/pg_shadow.h
+++ b/src/include/catalog/pg_shadow.h
@@ -9,7 +9,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: pg_shadow.h,v 1.10 2001/01/24 19:43:22 momjian Exp $
+ * $Id: pg_shadow.h,v 1.11 2001/03/09 22:10:13 tgl Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
@@ -73,6 +73,6 @@ typedef FormData_pg_shadow *Form_pg_shadow;
* user choices.
* ----------------
*/
-DATA(insert OID = 0 ( POSTGRES PGUID t t t t _null_ _null_ ));
+DATA(insert OID = 0 ( "POSTGRES" PGUID t t t t _null_ _null_ ));
#endif /* PG_SHADOW_H */