Skip to content

Commit

Permalink
Fix typo in SQL_ATTR_TXN_ISOLATION (#884)
Browse files Browse the repository at this point in the history
It is clearly not supposed to have `" "` in it :)

Signed-off-by: sobolevn <[email protected]>
  • Loading branch information
sobolevn authored Sep 1, 2023
1 parent 3ad8512 commit 58551a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibm_db.c
Original file line number Diff line number Diff line change
Expand Up @@ -12493,6 +12493,6 @@ INIT_ibm_db(void) {
PyModule_AddIntConstant(m, "SQL_ATTR_DECFLOAT_ROUNDING_MODE", SQL_ATTR_DECFLOAT_ROUNDING_MODE);
PyModule_AddIntConstant(m, "SQL_ATTR_PING_DB", SQL_ATTR_PING_DB);
#endif
PyModule_AddIntConstant(m, " SQL_ATTR_TXN_ISOLATION", SQL_ATTR_TXN_ISOLATION);
PyModule_AddIntConstant(m, "SQL_ATTR_TXN_ISOLATION", SQL_ATTR_TXN_ISOLATION);
return MOD_RETURN_VAL(m);
}

0 comments on commit 58551a5

Please sign in to comment.