Skip to content
Closed
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
5 changes: 5 additions & 0 deletions _parts/part3.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,11 @@ Now we can make `execute_statement` read/write from our table structure:
}
```

Let's also define `ExecuteResult`:
```diff
+typedef enum { EXECUTE_SUCCESS, EXECUTE_TABLE_FULL } ExecuteResult;
```

Lastly, we need to initialize the table, create the respective
memory release function and handle a few more error cases:

Expand Down