File tree Expand file tree Collapse file tree 6 files changed +17
-18
lines changed
prqlc/prqlc/tests/integration/dbs
website/content/posts/2023-02-02-one-year Expand file tree Collapse file tree 6 files changed +17
-18
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ repos:
10
10
# rustfmt handles rust files, and in some snapshots we expect trailing spaces.
11
11
exclude : ' .*\.(rs|snap)$'
12
12
- repo : https://github.com/crate-ci/typos
13
- rev : v1.21 .0
13
+ rev : v1.22 .0
14
14
hooks :
15
15
- id : typos
16
16
# https://github.com/crate-ci/typos/issues/347
17
17
pass_filenames : false
18
18
- repo : https://github.com/rbubley/mirrors-prettier
19
- rev : v3.2.5
19
+ rev : v3.3.0
20
20
hooks :
21
21
- id : prettier
22
22
additional_dependencies :
25
25
# https://github.com/PRQL/prql/issues/3078
26
26
- prettier-plugin-go-template
27
27
- repo : https://github.com/astral-sh/ruff-pre-commit
28
- rev : v0.4.5
28
+ rev : v0.4.7
29
29
hooks :
30
30
- id : ruff
31
31
args : [--fix]
45
45
- id : clippy
46
46
stages : [manual]
47
47
- repo : https://github.com/rhysd/actionlint
48
- rev : v1.7.0
48
+ rev : v1.7.1
49
49
hooks :
50
50
- id : actionlint
51
51
- repo : https://github.com/tcort/markdown-link-check
Original file line number Diff line number Diff line change @@ -1141,8 +1141,8 @@ below in this release).
1141
1141
1142
1142
** Documentation** :
1143
1143
1144
- [ This release, the changelog only contains a subset of documentation
1145
- improvements]
1144
+ [ This release, the changelog only contains a subset of
1145
+ documentation improvements]
1146
1146
1147
1147
- Add docs on aliases in
1148
1148
[ Select] ( https://prql-lang.org/book/reference/stdlib/transforms/select.html )
Original file line number Diff line number Diff line change @@ -47,8 +47,8 @@ Tests are by default run on all the DBs with `SupportLevel::Supported`.
47
47
48
48
If you also want to test on a DB that is not yet at this support level like
49
49
` MSSQL ` , simply add ` # mssql:test ` on top of your query.\
50
- If you want to ignore one of the supported DBs like ` sqlite ` , simply add ` # sqlite:skip `
51
- on top of your query.
50
+ If you want to ignore one of the supported DBs like ` sqlite ` , simply add
51
+ ` # sqlite:skip ` on top of your query.
52
52
53
53
## Data
54
54
Original file line number Diff line number Diff line change @@ -7,8 +7,7 @@ editing, and testing PRQL's compiler code in two minutes:
7
7
8
8
- Install
9
9
[ ` rustup ` & ` cargo ` ] ( https://doc.rust-lang.org/cargo/getting-started/installation.html ) .
10
- - [ Optional but highly recommended] Install ` cargo-insta ` , our testing
11
- framework:
10
+ - [ Optional but highly recommended] Install ` cargo-insta ` , our testing framework:
12
11
13
12
``` sh
14
13
cargo install cargo-insta
@@ -474,8 +473,9 @@ Currently we release in a semi-automated way:
474
473
475
474
3 . After merging, go to
476
475
[ Draft a new release] ( https://github.com/PRQL/prql/releases/new ) {{footnote: Only
477
- maintainers have access to this page.}}, copy the changelog entry into the
478
- release description{{footnote: Unfortunately GitHub's markdown parser
476
+ maintainers have access to this page.}},
477
+ copy the changelog entry into the release
478
+ description{{footnote: Unfortunately GitHub's markdown parser
479
479
interprets linebreaks as newlines. I haven't found a better way of
480
480
editing the markdown to look reasonable than manually editing the text
481
481
or asking LLM to help.}}, enter the tag to be created, and hit
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ These are all the functions defined in the `date` module:
5
5
### ` to_text `
6
6
7
7
Converts a date into a text.\
8
- Since there are many possible date representations, ` to_text ` takes a ` format ` parameter
9
- that describes thanks to [ specifiers] ( #date--time-format-specifiers ) how the date
10
- or timestamp should be structured.
8
+ Since there are many possible date representations, ` to_text ` takes a ` format `
9
+ parameter that describes thanks to [ specifiers] ( #date--time-format-specifiers )
10
+ how the date or timestamp should be structured.
11
11
12
12
``` admonish info
13
13
Since all RDBMS have different ways to format dates and times, PRQL **requires an explicit dialect** to be specified
Original file line number Diff line number Diff line change @@ -30,9 +30,8 @@ Language design & development in the last year have been focused on these areas:
30
30
- fundamentals of how [ functions] ( https://github.com/PRQL/prql/issues/444 ) and
31
31
pipelines are [ evaluated] ( #define-functional-semantics ) .
32
32
33
- - small quality-of-life language features (e.g. syntax for [ f-strings, dates,
34
- coalesce operator] (https://prql-lang.org/book/reference/syntax/
35
- [ case] ( https://github.com/PRQL/prql/issues/504 ) ),
33
+ - small quality-of-life language features (e.g. syntax for [ f-strings,
34
+ dates, coalesce operator] (https://prql-lang.org/book/reference/syntax/ [ case] ( https://github.com/PRQL/prql/issues/504 ) ),
36
35
37
36
PRQL is now in a state where it can greatly improve the developer experience for
38
37
writing complex analytical queries, but it does require a bit of fiddling to set
You can’t perform that action at this time.
0 commit comments