Update of /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient.UnitTests/source
In directory sc8-pr-cvs1:/tmp/cvs-serv25232
Modified Files:
PgBaseTest.cs
Log Message:
Added serial field for NUnit test suite.
Index: PgBaseTest.cs
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient.UnitTests/source/PgBaseTest.cs,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** PgBaseTest.cs 2 Aug 2003 19:43:03 -0000 1.1.1.1
--- PgBaseTest.cs 3 Aug 2003 11:03:01 -0000 1.2
***************
*** 139,143 ****
commandText.Append("time_field time,");
commandText.Append("timestamp_field timestamp,");
- // commandText.Append("serial_field serial NOT NULL,");
commandText.Append("blob_field bytea,");
commandText.Append("bool_field bool,");
--- 139,142 ----
***************
*** 147,150 ****
--- 146,150 ----
commandText.Append("numeric_field numeric(8,2),");
commandText.Append("array_int int2[],");
+ commandText.Append("serial_field serial NOT NULL,");
commandText.Append("CONSTRAINT test_table_pkey PRIMARY KEY (int4_field)");
commandText.Append(") WITH OIDS;");
|