Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 0 additions & 2 deletions dbdimp.c
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,6 @@ int dbd_st_bind_col(SV *sth, imp_sth_t *imp_sth, SV *col, SV *ref, IV type, SV *
imp_sth->fbh[field-1].bind_flags = 0; /* default to none */
}

#if DBIXS_REVISION >= 13590
/* DBIXS 13590 added StrictlyTyped and DiscardString attributes */
if (attribs) {
HV *attr_hash;
Expand All @@ -790,7 +789,6 @@ int dbd_st_bind_col(SV *sth, imp_sth_t *imp_sth, SV *col, SV *ref, IV type, SV *
imp_sth->fbh[field-1].bind_flags |= DBIstcf_DISCARD_STRING;
}
}
#endif /* DBIXS_REVISION >= 13590 */
return 1;
}

Expand Down
2 changes: 0 additions & 2 deletions oci8.c
Original file line number Diff line number Diff line change
Expand Up @@ -4189,7 +4189,6 @@ dbd_st_fetch(SV *sth, imp_sth_t *imp_sth){
--datalen;
}
sv_setpvn(sv, p, (STRLEN)datalen);
#if DBIXS_REVISION > 13590
/* If a bind type was specified we use DBI's sql_type_cast
to cast it - currently only number types are handled */
if ((fbh->req_type != 0) && (fbh->bind_flags != 0)) {
Expand Down Expand Up @@ -4219,7 +4218,6 @@ dbd_st_fetch(SV *sth, imp_sth_t *imp_sth){
}
}
else
#endif /* DBISTATE_VERSION > 94 */
{
if (CSFORM_IMPLIES_UTF8(imp_dbh, fbh->csform) ){
SvUTF8_on(sv);
Expand Down