From 0e4d43f4593cda055d15641e0edce424b0b84fab Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 4 Jul 2001 15:09:54 +0000 Subject: The attached patch removes some old and dead code (and some related misleading comments) from the PG_Stream class. Anders Bengtsson --- .../jdbc/org/postgresql/fastpath/Fastpath.java | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) (limited to 'src/interfaces/jdbc/org/postgresql/fastpath') diff --git a/src/interfaces/jdbc/org/postgresql/fastpath/Fastpath.java b/src/interfaces/jdbc/org/postgresql/fastpath/Fastpath.java index 9e9b07f89be..4566f562d28 100644 --- a/src/interfaces/jdbc/org/postgresql/fastpath/Fastpath.java +++ b/src/interfaces/jdbc/org/postgresql/fastpath/Fastpath.java @@ -18,19 +18,6 @@ import org.postgresql.util.*; * *

It is based around the file src/interfaces/libpq/fe-exec.c * - * - *

Implementation notes: - * - *

Network protocol: - * - *

The code within the backend reads integers in reverse. - * - *

There is work in progress to convert all of the protocol to - * network order but it may not be there for v6.3 - * - *

When fastpath switches, simply replace SendIntegerReverse() with - * SendInteger() - * * @see org.postgresql.FastpathFastpathArg * @see org.postgresql.LargeObject */ @@ -80,9 +67,7 @@ public class Fastpath // that confuses the backend. The 0 terminates the command line. stream.SendInteger(70,1); stream.SendInteger(0,1); - - //stream.SendIntegerReverse(fnid,4); - //stream.SendIntegerReverse(args.length,4); + stream.SendInteger(fnid,4); stream.SendInteger(args.length,4); -- cgit v1.2.3