Skip to content

Commit 6eaebb6

Browse files
committed
odbc: Do not lock table in describeparam test
That statement failed due to locking during multi process testing in AppVeyor CI. Signed-off-by: Frediano Ziglio <freddy77@gmail.com>
1 parent 8d5d308 commit 6eaebb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/odbc/unittests/describeparam.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ TEST_MAIN()
236236
CHKAllocStmt(&stmt, "S");
237237

238238
SWAP_STMT(stmt);
239-
CHKExecDirect(T("SELECT * FROM sysobjects"), SQL_NTS, "S");
239+
CHKExecDirect(T("SELECT * FROM sysobjects(NOLOCK)"), SQL_NTS, "S");
240240

241241
SWAP_STMT(stmt);
242242
CHKPrepare(T("INSERT INTO describe(vc) VALUES(?)"), SQL_NTS, "S");

0 commit comments

Comments
 (0)