Update of /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/NPgClient
In directory sc8-pr-cvs1:/tmp/cvs-serv23036
Modified Files:
PgResponsePacket.cs
Log Message:
* source/NPgClient/PgOutputPacket.cs:
* source/NPgClient/PgResponsePacket.cs:
- Added fix for correct handling of box type.
- Added some changes to interval datatype handling.
* source/PgTypes/PgBox.cs:
- Added fix for correct handling of box type.
Index: PgResponsePacket.cs
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/NPgClient/PgResponsePacket.cs,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** PgResponsePacket.cs 27 Oct 2003 12:25:21 -0000 1.16
--- PgResponsePacket.cs 27 Oct 2003 18:46:49 -0000 1.17
***************
*** 373,377 ****
public PgBox ReadBox()
{
! return new PgBox(this.ReadPoint(), this.ReadPoint());
}
--- 373,380 ----
public PgBox ReadBox()
{
! PgPoint upperRight = this.ReadPoint();
! PgPoint lowerLeft = this.ReadPoint();
!
! return new PgBox(lowerLeft, upperRight);
}
|