diff options
-rw-r--r-- | src/interfaces/jdbc/postgresql/PG_Stream.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/jdbc/postgresql/PG_Stream.java b/src/interfaces/jdbc/postgresql/PG_Stream.java index 3e3350dd10d..59804c6dc6b 100644 --- a/src/interfaces/jdbc/postgresql/PG_Stream.java +++ b/src/interfaces/jdbc/postgresql/PG_Stream.java @@ -156,7 +156,7 @@ public class PG_Stream if (b < 0) throw new IOException("EOF"); - n = n | (b >> (8 * i)) ; + n = n | (b << (8 * i)) ; } } catch (IOException e) { throw new SQLException("Error reading from backend: " + e.toString()); |