Skip to content

Commit

Permalink
Fix sentences that trailed off
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmcsherry committed Jul 17, 2024
1 parent 7a981b0 commit 36b1eb0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions posts/2024-05-19.md
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,8 @@ In our case, the updates are going to derive from our manipulation of `fraud_acc
1718981380562 1 20403 7
1718981380562 1 16584 7
```
The data are not really changing much, on account of
The data are not really changing much, on account of the winners all having the same counts.
But, this is actually good for us, because we can see what happens when we force a change.

At this point, let's insert the record `17519` into `fraud_accounts`.
```
Expand Down Expand Up @@ -693,7 +694,7 @@ CREATE DEFAULT INDEX ON days;

We'll want to create the same default indexes on our other views: `hours`, `minutes`, and `seconds`.
Importantly, we want to create them in this order, also, to make sure that each relies on the one before it.
If they did not, we would be back in the world of
If they did not, we would be back in the world of the previous section, where each would read ahead until the end of time (the year 2099, in this example).

#### Finishing touches

Expand Down

0 comments on commit 36b1eb0

Please sign in to comment.