Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
878c7bb
mssql_python/cursor.py
subrata-ms Nov 17, 2025
87fd98c
test case addition
subrata-ms Nov 17, 2025
ce3a27d
reverting python changes and fixing it in ddbc
subrata-ms Nov 17, 2025
7c5a0dd
mix data set with NONE
subrata-ms Nov 17, 2025
be42d81
Merge branch 'main' into InsertNoneDataType
subrata-ms Nov 25, 2025
ee21ccf
linting fix
subrata-ms Nov 25, 2025
13a2a19
Merge branch 'main' into InsertNoneDataType
subrata-ms Dec 11, 2025
daf1e96
Merge branch 'main' into InsertNoneDataType
subrata-ms Dec 15, 2025
93721b1
code review comment
subrata-ms Dec 15, 2025
c2acddc
Merge branch 'main' into InsertNoneDataType
subrata-ms Dec 15, 2025
44049cb
added comprehensive test cases for this change
subrata-ms Dec 15, 2025
02de6f6
Merge remote changes: Added atexit cleanup, fixed DBC handle leak, se…
subrata-ms Dec 15, 2025
051be7f
fixing linting issues
subrata-ms Dec 15, 2025
3900973
Merge branch 'main' into InsertNoneDataType
subrata-ms Dec 16, 2025
56cb334
Fixing the test failure in PR test pipeline
subrata-ms Dec 16, 2025
5805f83
Merge branch 'main' into InsertNoneDataType
subrata-ms Dec 16, 2025
bc55fd1
reducing the number of thread count to provide stability on the test
subrata-ms Dec 16, 2025
1c37a67
Merge remote changes
subrata-ms Dec 16, 2025
0533463
linting issue fix
subrata-ms Dec 16, 2025
c2c6be0
fixing unstable test
subrata-ms Dec 16, 2025
db7e90a
skipping the test for intermitent issues
subrata-ms Dec 17, 2025
09f23b1
Merge branch 'main' into InsertNoneDataType
subrata-ms Dec 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mssql_python/cursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def _map_sql_type( # pylint: disable=too-many-arguments,too-many-positional-arg
logger.debug('_map_sql_type: NULL parameter - index=%d', i)
return (
ddbc_sql_const.SQL_VARCHAR.value,
ddbc_sql_const.SQL_C_DEFAULT.value,
ddbc_sql_const.SQL_C_CHAR.value,
1,
0,
False,
Expand Down
Loading