Esempio n. 1
0
        public void PqsqlCopyToTest9()
        {
            const int len = 5;

            // the last 8 ticks (800 nanoseconds) of MinValue can not be stored in postgres' interval type, because of
            // its resolution to milliseconds.
            var intervalMinValue = new TimeSpan(TimeSpan.MinValue.Ticks + 8);

            // the last 7 ticks (700 nanoseconds) of MaxValue can not be stored in postgres' interval type, because of
            // its resolution to milliseconds.
            var intervalMaxValue = new TimeSpan(TimeSpan.MaxValue.Ticks - 7);

            PqsqlTransaction tran = mConnection.BeginTransaction();

            mCmd.Transaction = tran;

            mCmd.CommandText = "create temporary table foo (a interval); " +
                               "insert into foo values (null); " +
                               "insert into foo values ('10675199 02:48:05.477580 ago'); " +
                               "insert into foo values ('10675199 02:48:05.477580'); " +
                               "insert into foo values ('10675199 02:48:05.477581 ago'); " +
                               "insert into foo values ('10675199 02:48:05.477581'); ";
            mCmd.CommandType = CommandType.Text;
            int affected = mCmd.ExecuteNonQuery();

            Assert.AreEqual(len, affected);

            var copy = new PqsqlCopyTo(mConnection)
            {
                Table       = "foo",
                ColumnList  = "a",
                CopyTimeout = 10,
            };

            copy.Start();

            var res = copy.FetchRow();

            Assert.IsTrue(res);

            var a0 = copy.ReadInterval();

            Assert.AreEqual(TimeSpan.MinValue, a0);


            res = copy.FetchRow();
            Assert.IsTrue(res);

            var a1 = copy.ReadInterval();

            Assert.AreEqual(intervalMinValue, a1);


            res = copy.FetchRow();
            Assert.IsTrue(res);

            var a2 = copy.ReadInterval();

            Assert.AreEqual(intervalMaxValue, a2);


            res = copy.FetchRow();
            Assert.IsTrue(res);

            try
            {
                // a3 '10675199 02:48:05.477581 ago'
                var a3 = copy.ReadInterval();
                Assert.Fail();
            }
            catch (ArgumentOutOfRangeException) {}


            res = copy.FetchRow();
            Assert.IsTrue(res);

            try
            {
                // a4 '10675199 02:48:05.477581'
                copy.ReadInterval();
                Assert.Fail();
            }
            catch (ArgumentOutOfRangeException) {}

            res = copy.FetchRow();
            Assert.IsFalse(res);
            copy.Close();
            tran.Rollback();
        }
Esempio n. 2
0
        public void PqsqlCopyToTest3()
        {
            const int len = 1;

            PqsqlTransaction tran = mConnection.BeginTransaction();

            mCmd.Transaction = tran;

            mCmd.CommandText = "create temporary table foo (a int2, b int4, c int8, d boolean, e boolean, f float4, " +
                               "g float8, h text, i timestamp, j time, k timetz, l timetz, m date, n interval); " +
                               "insert into foo values (5, 1000001, 42949672950, true, false, 3.14, 3.14, 'hallo 1', " +
                               "TIMESTAMP '1999-01-08 04:05:06', '04:05:06.789', '04:05:06-08:00', '04:05:06+08:00', " +
                               "'1999-01-08', '3 4:05:06');";
            mCmd.CommandType = CommandType.Text;
            int affected = mCmd.ExecuteNonQuery();

            Assert.AreEqual(len, affected);

            var copy = new PqsqlCopyTo(mConnection)
            {
                Table       = "foo",
                ColumnList  = "a,b,c,d,e,f,g,h,i,j,k,l,m,n",
                CopyTimeout = 10,
            };

            copy.Start();

            while (copy.FetchRow())
            {
                var a = copy.ReadInt2();
                Assert.AreEqual(5, a);

                var b = copy.ReadInt4();
                Assert.AreEqual(1000001, b);

                var c = copy.ReadInt8();
                Assert.AreEqual(42949672950, c);

                var d = copy.ReadBoolean();
                Assert.IsTrue(d);

                var e = copy.ReadBoolean();
                Assert.IsFalse(e);

                var f = copy.ReadFloat4();
                Assert.AreEqual(3.14, f, 0.00001);

                var g = copy.ReadFloat8();
                Assert.AreEqual(3.14, g, 0.00001);

                var h = copy.ReadString();
                Assert.AreEqual("hallo 1", h);

                var i = copy.ReadTimestamp();
                Assert.AreEqual(new DateTime(1999, 1, 8, 4, 5, 6), i);

                var j = copy.ReadTime();
                Assert.AreEqual(new DateTime(1970, 1, 1, 4, 5, 6, 789), j);

                var k = copy.ReadTimeTZ();
                Assert.AreEqual(new DateTimeOffset(1970, 1, 1, 4, 5, 6, 0, new TimeSpan(-8, 0, 0)), k);

                var l = copy.ReadTimeTZ();
                Assert.AreEqual(new DateTimeOffset(1970, 1, 1, 4, 5, 6, 0, new TimeSpan(8, 0, 0)), l);

                var m = copy.ReadDate();
                Assert.AreEqual(new DateTime(1999, 1, 8), m);

                var n = copy.ReadInterval();
                Assert.AreEqual(new TimeSpan(3, 4, 5, 6), n);
            }

            copy.Close();
            tran.Rollback();
        }