Skip to content
Merged
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
6 changes: 3 additions & 3 deletions r/adbcdrivermanager/src/options.cc
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ extern "C" SEXP RAdbcDatabaseSetOption(SEXP database_xptr, SEXP key_sexp, SEXP v
return adbc_set_option<AdbcDatabase, double>(
database_xptr, key_sexp, value_sexp, error_xptr, &AdbcDatabaseSetOptionDouble);
default:
Rf_error("Option value type not suppported");
Rf_error("Option value type not supported");
}
}

Expand All @@ -103,7 +103,7 @@ extern "C" SEXP RAdbcConnectionSetOption(SEXP connection_xptr, SEXP key_sexp,
value_sexp, error_xptr,
&AdbcConnectionSetOptionDouble);
default:
Rf_error("Option value type not suppported");
Rf_error("Option value type not supported");
}
}

Expand All @@ -124,7 +124,7 @@ extern "C" SEXP RAdbcStatementSetOption(SEXP statement_xptr, SEXP key_sexp,
error_xptr,
&AdbcStatementSetOptionDouble);
default:
Rf_error("Option value type not suppported");
Rf_error("Option value type not supported");
}
}

Expand Down
Loading