Skip to content

Commit

Permalink
Update README.md (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
peasee authored Oct 7, 2024
1 parent ff994c1 commit 070ca22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions acceleration/indexes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,17 @@ spice run
Once the datasets have loaded, run the following query in the SQL REPL via `spice sql` to get a single row:

```sql
SELECT * FROM traces_no_index WHERE trace_id = 'call_0x22ba49176f15ec5524434d87c47fc9dbff6ef8f584889ab4f0fa830d76a678d4_7_3_2_0_0_0_0_0'
SELECT * FROM traces_no_index WHERE trace_id = 'call_0x22ba49176f15ec5524434d87c47fc9dbff6ef8f584889ab4f0fa830d76a678d4_7_3_2_0_0_0_0_0';
```

> Time: 0.009690667 seconds. 1 rows.
> Time: 6.4854340950000005 seconds. 1 rows.
**Step 4.** Run a query on the dataset with an index

Repeat the query, but this time against the dataset with the index configured:

```sql
SELECT * FROM traces WHERE trace_id = 'call_0x22ba49176f15ec5524434d87c47fc9dbff6ef8f584889ab4f0fa830d76a678d4_7_3_2_0_0_0_0_0'
SELECT * FROM traces WHERE trace_id = 'call_0x22ba49176f15ec5524434d87c47fc9dbff6ef8f584889ab4f0fa830d76a678d4_7_3_2_0_0_0_0_0';
```

> Time: 0.003471583 seconds. 1 rows.
Expand Down

0 comments on commit 070ca22

Please sign in to comment.