Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion prqlc/prqlc/tests/integration/dbs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ to 112kB, but that would require a preprocessing step before running
## Queries

For databases like ClickHouse, where the order of results is ambiguous, please
use `sort` for test queries to to guarantee the order of rows across DBs.
use `sort` for test queries to guarantee the order of rows across DBs.

For example, instead of the following query:

Expand Down
2 changes: 1 addition & 1 deletion web/book/src/reference/syntax/keywords.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Identifiers of database tables can be prefixed with schema and databases names.
from my_database.chinook.albums
```

Note that all of following identifiers will be treated as separate table
Note that all of the following identifiers will be treated as separate table
definitions: `tracks`, `public.tracks`, `my_database.public.tracks`.

## Keywords
Expand Down
10 changes: 5 additions & 5 deletions web/playground/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="en">

Check warning on line 2 in web/playground/index.html

View workflow job for this annotation

GitHub Actions / lint-megalinter / MegaLinter

H031 Consider adding meta keywords.
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.ico" />
Expand All @@ -19,14 +19,14 @@
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
This HTML file is the Vite entry point.
If you open it directly in the browser, you will see an empty page,
because the app is loaded via the module script below.

You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.

To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
To begin development, run `npm run dev`.
To create a production bundle, run `npm run build`.
-->
<script type="module" src="/src/main.jsx"></script>
</body>
Expand Down
Loading