File tree 2 files changed +3
-6
lines changed
2 files changed +3
-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/access/common/printtup.c,v 1.36 1998/11/27 19:51:28 vadim Exp $
11
+ * $Header: /cvsroot/pgsql/src/backend/access/common/printtup.c,v 1.37 1998/12/12 22:04:09 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
@@ -289,12 +289,9 @@ printtup_internal(HeapTuple tuple, TupleDesc typeinfo)
289
289
/* variable length, assume a varlena structure */
290
290
len = VARSIZE (attr ) - VARHDRSZ ;
291
291
292
- #ifdef MULTIBYTE
293
- pq_putncharlen (VARDATA (attr ), len );
294
- #else
295
292
pq_putint (len , VARHDRSZ );
296
293
pq_putnchar (VARDATA (attr ), len );
297
- #endif
294
+
298
295
#ifdef IPORTAL_DEBUG
299
296
{
300
297
char * d = VARDATA (attr );
Original file line number Diff line number Diff line change 59
59
60
60
if createdb -help|grep encoding >/dev/null
61
61
then
62
- echo " create database with encoding=' `pg_encoding $ENCODING`' $DATABASE ; "
62
+ echo " create database $DATABASE with encoding=' `pg_encoding $ENCODING`' ; "
63
63
else
64
64
echo " create database $DATABASE ; "
65
65
fi
You can’t perform that action at this time.
0 commit comments