[pgsqlclient-checkins] pgsqlclient_10/PostgreSql.Data.PgSqlClient.UnitTests/source PgBaseTest.cs,1.4
Status: Inactive
Brought to you by:
carlosga_fb
From: <car...@us...> - 2003-09-20 10:47:36
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient.UnitTests/source In directory sc8-pr-cvs1:/tmp/cvs-serv17723 Modified Files: PgBaseTest.cs Log Message: Changed a little the test table structure Index: PgBaseTest.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient.UnitTests/source/PgBaseTest.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** PgBaseTest.cs 18 Sep 2003 14:47:29 -0000 1.4 --- PgBaseTest.cs 20 Sep 2003 10:47:30 -0000 1.5 *************** *** 148,152 **** commandText.Append("money_field money,"); 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)"); --- 148,154 ---- commandText.Append("money_field money,"); commandText.Append("numeric_field numeric(8,2),"); ! commandText.Append("int2_array int2[],"); ! commandText.Append("int4_array int4[],"); ! commandText.Append("int8_array int8[],"); commandText.Append("serial_field serial NOT NULL,"); commandText.Append("CONSTRAINT test_table_pkey PRIMARY KEY (int4_field)"); |