File tree Expand file tree Collapse file tree
website/docs/getting-started Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ sql> show tables
145145| table_catalog | table_schema | table_name | table_type |
146146+---------------+--------------+---------------+------------+
147147| spice | public | taxi_trips | BASE TABLE |
148- | spice | runtime | task_history | BASE TABLE |
148+ | spice | runtime | task_history | BASE TABLE |
149149| spice | runtime | metrics | BASE TABLE |
150150+---------------+--------------+---------------+------------+
151151
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ spice dataset configure
5757
5858Enter a dataset name that will be used to reference the dataset in queries. This name does not need to match the name in the dataset source.
5959
60- ``` bash
60+ ``` yaml
6161dataset name : (spice_app) taxi_trips
6262` ` `
6363
@@ -69,7 +69,7 @@ description: Taxi trips dataset
6969
7070Enter the location of the dataset:
7171
72- ``` bash
72+ ` ` ` yaml
7373from : spice.ai/spiceai/quickstart/datasets/taxi_trips
7474` ` `
7575
@@ -89,11 +89,11 @@ You should see the following output from your runtime terminal:
8989
9090**Step 5.** In a new terminal window, use the Spice SQL REPL to query the dataset
9191
92- ` ` ` bash
92+ ` ` ` sql
9393spice sql
9494` ` `
9595
96- ` ` ` bash
96+ ` ` ` sql
9797SELECT tpep_pickup_datetime, passenger_count, trip_distance from taxi_trips LIMIT 10;
9898` ` `
9999
@@ -122,8 +122,8 @@ You can experiment with the time it takes to generate queries when using non-acc
122122
123123# ## Additional Example
124124
125- ` ` ` bash
126- # Query to display the average trip distance
125+ ` ` ` sql
126+ -- Query to display the average trip distance
127127SELECT AVG(trip_distance) FROM taxi_trips;
128128` ` `
129129
You can’t perform that action at this time.
0 commit comments