Skip to content

Commit a7ef10d

Browse files
authored
Merge pull request #149 from c-herrewijn/main
bump extension-ci-tools to v1.2.2
2 parents 66a5fa2 + 0a3d8be commit a7ef10d

File tree

4 files changed

+28
-29
lines changed

4 files changed

+28
-29
lines changed

.github/workflows/MainDistributionPipeline.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ concurrency:
1414
jobs:
1515
duckdb-stable-build:
1616
name: Build extension binaries
17-
uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@main
17+
uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@v1.2.2
1818
with:
19-
duckdb_version: v1.2.1
19+
duckdb_version: v1.2.2
2020
extension_name: sqlite_scanner
21-
ci_tools_version: main
21+
ci_tools_version: v1.2.2
2222

2323
duckdb-stable-deploy:
2424
name: Deploy extension binaries
2525
needs: duckdb-stable-build
26-
uses: duckdb/extension-ci-tools/.github/workflows/_extension_deploy.yml@main
26+
uses: duckdb/extension-ci-tools/.github/workflows/_extension_deploy.yml@v1.2.2
2727
secrets: inherit
2828
with:
29-
duckdb_version: v1.2.1
29+
duckdb_version: v1.2.2
3030
extension_name: sqlite_scanner
31-
ci_tools_version: main
31+
ci_tools_version: v1.2.2
3232
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
3333
deploy_versioned: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}

README.md

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,22 @@ SHOW TABLES;
2020
You can query the tables using SQL, e.g. using the example queries from sakila-examples.sql
2121

2222
```sql
23-
SELECT cat.name category_name,
24-
Sum(Ifnull(pay.amount, 0)) revenue
25-
FROM category cat
26-
LEFT JOIN film_category flm_cat
27-
ON cat.category_id = flm_cat.category_id
28-
LEFT JOIN film fil
29-
ON flm_cat.film_id = fil.film_id
30-
LEFT JOIN inventory inv
31-
ON fil.film_id = inv.film_id
32-
LEFT JOIN rental ren
33-
ON inv.inventory_id = ren.inventory_id
34-
LEFT JOIN payment pay
35-
ON ren.rental_id = pay.rental_id
36-
GROUP BY cat.name
37-
ORDER BY revenue DESC
38-
LIMIT 5;
23+
SELECT cat.name category_name,
24+
Sum(Ifnull(pay.amount, 0)) revenue
25+
FROM category cat
26+
LEFT JOIN film_category flm_cat
27+
ON cat.category_id = flm_cat.category_id
28+
LEFT JOIN film fil
29+
ON flm_cat.film_id = fil.film_id
30+
LEFT JOIN inventory inv
31+
ON fil.film_id = inv.film_id
32+
LEFT JOIN rental ren
33+
ON inv.inventory_id = ren.inventory_id
34+
LEFT JOIN payment pay
35+
ON ren.rental_id = pay.rental_id
36+
GROUP BY cat.name
37+
ORDER BY revenue DESC
38+
LIMIT 5;
3939
```
4040

4141
## Opening SQLite Databases Directly
@@ -45,7 +45,7 @@ SQLite databases can also be opened directly and can be used transparently inste
4545
For example, with the shell:
4646

4747
```sql
48-
$ > duckdb data/db/sakila.db
48+
$ > duckdb data/db/sakila.db
4949
v0.9.1 401c8061c6
5050
D SHOW tables;
5151
┌────────────────────────┐
@@ -95,10 +95,10 @@ INSERT INTO sqlite_db.tbl VALUES (42, 'DuckDB');
9595
The resulting SQLite database can then be read into from SQLite.
9696

9797
```sql
98-
$r > sqlite3 new_sqlite_database.db
98+
$r > sqlite3 new_sqlite_database.db
9999
SQLite version 3.39.5 2022-10-14 20:58:05
100100
sqlite> SELECT * FROM tbl;
101-
id name
101+
id name
102102
-- ------
103103
42 DuckDB
104104
```
@@ -183,7 +183,7 @@ SELECT * FROM sqlite_db.tmp;
183183

184184
## Building & Loading the Extension
185185

186-
To build, type
186+
To build, type
187187
```
188188
make
189189
```
@@ -197,4 +197,3 @@ Then, load the SQLite extension like so:
197197
```SQL
198198
LOAD 'build/release/extension/sqlite_scanner/sqlite_scanner.duckdb_extension';
199199
```
200-

duckdb

Submodule duckdb updated 1182 files

0 commit comments

Comments
 (0)