Skip to content

Commit

Permalink
Added check to pass compilation issue for zos (#968)
Browse files Browse the repository at this point in the history
Signed-off-by: ek <[email protected]>
  • Loading branch information
Earammak authored Oct 14, 2024
1 parent 9d2a82e commit 87e2e35
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ibm_db.c
Original file line number Diff line number Diff line change
Expand Up @@ -14288,7 +14288,9 @@ static PyObject *ibm_db_get_option(PyObject *self, PyObject *args)
case SQL_ATTR_CURSOR_TYPE:
case SQL_ATTR_ROWCOUNT_PREFETCH:
case SQL_ATTR_QUERY_TIMEOUT:
case SQL_ATTR_CALL_RETURN:
#ifndef __MVS__
case SQL_ATTR_CALL_RETURN:
#endif
isInteger = 1;
snprintf(messageStr, sizeof(messageStr), "Option %d is considered integer", op_integer);
LogMsg(DEBUG, messageStr, fileName);
Expand Down

0 comments on commit 87e2e35

Please sign in to comment.