From 6a61dc6ac02df57d95b0a72533ac02cc8afa8710 Mon Sep 17 00:00:00 2001 From: Lawrin Novitsky Date: Mon, 9 Oct 2017 16:54:20 +0300 Subject: [PATCH] Un-skipped test of updatebale cursor(SQLSetPos with SQL_UPDATE), since I've noticed it's being skipped, and it doesn't fail --- test/blob.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/blob.c b/test/blob.c index b3132a54..f808c7be 100644 --- a/test/blob.c +++ b/test/blob.c @@ -743,8 +743,6 @@ ODBC_TEST(t_bug10562) int result= OK; memset(blob, 'X', bsize); - skip("updatable cursor not supported"); - OK_SIMPLE_STMT(Stmt, "drop table if exists t_bug10562"); OK_SIMPLE_STMT(Stmt, "create table t_bug10562 ( id int not null primary key DEFAULT 0, mb longblob )"); OK_SIMPLE_STMT(Stmt, "insert into t_bug10562 (mb) values ('zzzzzzzzzz')");