Skip to content

Commit 4383861

Browse files
committed
Fix of the testcase - handle from framework was not reset after freeing
Fixed workflow file for 32b windows test - it had 3.1 version referenced instead of 3.2
1 parent 4da97f8 commit 4383861

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
$powershell32b = "$env:WINDIR\SysWOW64\WindowsPowerShell\v1.0\powershell.exe"
152152
$dsn= {
153153
Add-OdbcDsn -Name $env:TEST_DSN `
154-
-DriverName "MariaDB ODBC 3.1 Driver" `
154+
-DriverName "MariaDB ODBC 3.2 Driver" `
155155
-DsnType "User" `
156156
-SetPropertyValue @( "SERVER=$env:TEST_SERVER", "DATABASE=$env:TEST_SCHEMA", "USER=$env:TEST_UID", "PASSWORD=$env:TEST_PASSWORD", "PORT=$env:TEST_PORT" )
157157
}

test/bulk.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -729,6 +729,7 @@ ODBC_TEST(t_odbc235)
729729

730730
OK_SIMPLE_STMT(Stmt, "DROP TABLE IF EXISTS t_odbc235");
731731
CHECK_STMT_RC(wStmt, SQLFreeStmt(wStmt, SQL_DROP));
732+
wStmt= NULL;
732733

733734
return OK;
734735
}

0 commit comments

Comments
 (0)