mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:28:12 +00:00
LibSQL: Remove infallible type conversions from SQL::Value
Force the callers to either know that the type is convertible, or to handle the conversion failure.
This commit is contained in:
parent
af3980384b
commit
7d41b46a7d
8 changed files with 22 additions and 64 deletions
|
@ -211,7 +211,7 @@ void insert_into_and_scan_btree(int num_keys)
|
|||
if (prev.size()) {
|
||||
EXPECT(prev < key);
|
||||
}
|
||||
auto key_value = (int)key[0];
|
||||
auto key_value = key[0].to_int();
|
||||
for (auto ix = 0; ix < num_keys; ix++) {
|
||||
if (keys[ix] == key_value) {
|
||||
EXPECT_EQ(key.pointer(), pointers[ix]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue