Skip to content

Commit

Permalink
nit: Add missing newlines at the end of files
Browse files Browse the repository at this point in the history
  • Loading branch information
szarnyasg committed Jul 27, 2023
1 parent ce1fec8 commit 9f4eb16
Show file tree
Hide file tree
Showing 22 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion docs/api/c/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ We also provide a SQLite API wrapper which means that if your applications is pr
## Installation
The DuckDB C API can be installed as part of the `libduckdb` packages. Please see the [installation page](../../installation?environment=cplusplus) for details.

### Pages in this Section
### Pages in this Section
2 changes: 1 addition & 1 deletion docs/api/cpp.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,4 +226,4 @@ This method automatically discovers from the template typenames the correspondin

```c++
// TODO
```
```
2 changes: 1 addition & 1 deletion docs/api/nodejs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@ var stmt = con.prepare('select ?::INTEGER as fortytwo', function(err, stmt) {
console.log(res[0].fortytwo)
});
});
```
```
2 changes: 1 addition & 1 deletion docs/api/wasm/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ Another great resource is the [Github repository](https://github.com/duckdb/duck

For details, see the full [DuckDB-Wasm API Documentation](https://shell.duckdb.org/docs/modules/index.html).

### Pages in this Section
### Pages in this Section
2 changes: 1 addition & 1 deletion docs/extensions/json.md
Original file line number Diff line number Diff line change
Expand Up @@ -479,4 +479,4 @@ SELECT * FROM json_execute_serialized_sql(json_serialize_sql('SELECT 1 + 2'));
-- Example with error
SELECT * FROM json_execute_serialized_sql(json_serialize_sql('TOTALLY NOT VALID SQL'));
-- Error: Parser Error: Error parsing json: parser: syntax error at or near "TOTALLY"
```
```
2 changes: 1 addition & 1 deletion docs/guides/import/parquet_import.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ Alternatively, the `COPY` statement can also be used to load data from a Parquet
COPY tbl FROM 'input.parquet' (FORMAT PARQUET);
```

For additional options, see the [Parquet Loading reference](../../data/parquet).
For additional options, see the [Parquet Loading reference](../../data/parquet).
2 changes: 1 addition & 1 deletion docs/guides/import/query_parquet.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ SELECT * FROM read_parquet('input.parquet');

The Parquet file will be processed in parallel. Filters will be automatically pushed down into the Parquet scan, and only the relevant columns will be read automatically.

For more information see the blog post ["Querying Parquet with Precision using DuckDB"](/2021/06/25/querying-parquet.html).
For more information see the blog post ["Querying Parquet with Precision using DuckDB"](/2021/06/25/querying-parquet.html).
2 changes: 1 addition & 1 deletion docs/guides/import/query_postgres.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ CALL postgres_attach('');
SELECT * FROM tbl_name;
```

For more information see the [Postgres scanner documentation](/docs/extensions/postgres_scanner).
For more information see the [Postgres scanner documentation](/docs/extensions/postgres_scanner).
2 changes: 1 addition & 1 deletion docs/guides/import/query_sqlite.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ CALL sqlite_attach('test.db');
SELECT * FROM tbl_name;
```

For more information see the [SQLite scanner documentation](/docs/extensions/sqlite_scanner).
For more information see the [SQLite scanner documentation](/docs/extensions/sqlite_scanner).
2 changes: 1 addition & 1 deletion docs/guides/meta/explain.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ Below is an example of running `EXPLAIN` on `Q1` of the TPC-H benchmark.
│-09-02 AND l_shipdate ... │
│ NULL │
└───────────────────────────┘
```
```
2 changes: 1 addition & 1 deletion docs/guides/meta/explain_analyze.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,4 @@ Below is an example of running `EXPLAIN ANALYZE` on `Q1` of the TPC-H benchmark.
│ 5916591 │
│ (0.08s) │
└───────────────────────────┘
```
```
2 changes: 1 addition & 1 deletion docs/guides/python/multiple_threads.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ print(duckdb_con.execute("""
insert_time
""").df())

```
```
2 changes: 1 addition & 1 deletion docs/guides/python/sql_on_arrow.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ my_recordbatchreader = pa.ipc.RecordBatchReader.from_batches(my_recordbatch.sche

# query the Apache Arrow RecordBatchReader "my_recordbatchreader" and return as an Arrow Table
results = con.execute("SELECT * FROM my_recordbatchreader WHERE i = 2").arrow()
```
```
2 changes: 1 addition & 1 deletion docs/guides/sql_editors/dbeaver.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ selected: DBeaver SQL IDE

3. Click "Download" to download DuckDB's JDBC driver from Maven. Once download is complete, click "OK", then return to the main DBeaver window and continue with step 7 above.
* Note: If you are in a corporate environment or behind a firewall, before clicking download, click the "Download Configuration" link to configure your proxy settings.
<img src="/images/guides/DBeaver_download_driver_files_from_driver_settings.png" alt="DBeaver Download Driver Files 2" title="DBeaver Download Driver Files 2" />
<img src="/images/guides/DBeaver_download_driver_files_from_driver_settings.png" alt="DBeaver Download Driver Files 2" title="DBeaver Download Driver Files 2" />
2 changes: 1 addition & 1 deletion docs/guides/sql_editors/harlequin.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ To run a query, press `ctrl + enter`. Up to 50k records will be loaded into the

## Exiting Harlequin

Press `ctrl + q` to quit and return to your shell.
Press `ctrl + q` to quit and return to your shell.
2 changes: 1 addition & 1 deletion docs/sql/data_types/bitstring.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ SELECT bitstring('0101011', 12);
```

## Functions
See [Bitstring Functions](../functions/bitstring).
See [Bitstring Functions](../functions/bitstring).
2 changes: 1 addition & 1 deletion docs/sql/data_types/interval.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ SELECT datediff('month', TIMESTAMP '2000-01-01 11:00:00', TIMESTAMP '2000-02-01
See the [Date Part Functions docs](../../sql/functions/datepart) for a list of available
date parts for use with an `INTERVAL`.

See the [Interval Operators](../../sql/functions/interval) for various functions that operate on intervals.
See the [Interval Operators](../../sql/functions/interval) for various functions that operate on intervals.
2 changes: 1 addition & 1 deletion docs/sql/expressions/star.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,4 @@ SELECT a.* FROM (SELECT {'x':1, 'y':2, 'z':3} as a);

| x | y | z |
|:---|:---|:---|
| 1 | 2 | 3 |
| 1 | 2 | 3 |
2 changes: 1 addition & 1 deletion docs/sql/functions/utility.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ A table function is used in place of a table in a `FROM` clause.

| Function | Description | Example |
|:---|:---|:---|
| `glob(`*`search_path`*`)` | Return filenames found at the location indicated by the *search_path* in a single column named `file`. The *search_path* may contain [glob pattern matching syntax](./patternmatching). | `glob('*')` |
| `glob(`*`search_path`*`)` | Return filenames found at the location indicated by the *search_path* in a single column named `file`. The *search_path* may contain [glob pattern matching syntax](./patternmatching). | `glob('*')` |
2 changes: 1 addition & 1 deletion docs/sql/query_syntax/qualify.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,4 @@ WHERE
| pg_catalog | format_pg_type | 2 |

### Syntax
<div id="rrdiagram"></div>
<div id="rrdiagram"></div>
2 changes: 1 addition & 1 deletion docs/sql/query_syntax/setops.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,4 @@ SELECT * FROM capitals UNION BY NAME SELECT * FROM weather;
└───────────┴─────────┴─────────┴────────────┘
```

`UNION BY NAME` performs duplicate elimination, whereas `UNION ALL BY NAME` does not.
`UNION BY NAME` performs duplicate elimination, whereas `UNION ALL BY NAME` does not.
2 changes: 1 addition & 1 deletion docs/sql/statements/update.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ UPDATE original as true_original
```

### Upsert (Insert or Update)
See the [Insert documentation](/docs/sql/statements/insert#on-conflict-clause) for details.
See the [Insert documentation](/docs/sql/statements/insert#on-conflict-clause) for details.

0 comments on commit 9f4eb16

Please sign in to comment.