Skip to content

Commit

Permalink
fix (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
lidavidm committed Mar 16, 2024
1 parent 2f44044 commit ef320a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c/driver/framework/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ struct fmt::formatter<adbc::driver::Option> : fmt::nested_formatter<std::string_
[&](auto&& value) {
using T = std::decay_t<decltype(value)>;
if constexpr (std::is_same_v<T, adbc::driver::Option::Unset>) {
return fmt::format_to(out, "(unset option)");
return fmt::format_to(out, "(NULL)");
} else if constexpr (std::is_same_v<T, std::string>) {
return fmt::format_to(out, "'{}'", value);
} else if constexpr (std::is_same_v<T, std::vector<uint8_t>>) {
Expand Down

0 comments on commit ef320a7

Please sign in to comment.