Skip to content

Commit

Permalink
Remove more deprecated notices
Browse files Browse the repository at this point in the history
  • Loading branch information
szarnyasg committed Jan 8, 2025
1 parent b88dfc3 commit 28f0f55
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions _posts/2024-01-26-multi-database-support-in-duckdb.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,6 @@ ATTACH 'database.db' AS ddb;
COPY FROM DATABASE postgres TO ddb;
```

Note that this statement is currently only available in the development build. It will be available in the next DuckDB release (v0.10).

## Directly Opening a Database

The explicit `ATTACH` statement is not required to connect to a different database type. When instantiating a DuckDB instance a connection can be made directly to a different database type using the `{type}:` prefix. For example, to connect to a SQLite file, use `sqlite:file.db`. To connect to a Postgres instance, use `postgres:dbname=postgresscanner`. This can be done in any client, including the CLI. For instance:
Expand Down
2 changes: 1 addition & 1 deletion docs/archive/0.10/data/parquet/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ COPY
(FORMAT PARQUET, COMPRESSION ZSTD, ROW_GROUP_SIZE 100_000);
```

> LZ4 compression is currently only available in the nightly and source builds:
> LZ4 compression is currently only available in the nightly and source builds.
Write a CSV file to an `LZ4_RAW`-compressed Parquet file:

Expand Down
2 changes: 0 additions & 2 deletions docs/data/parquet/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,6 @@ COPY
(FORMAT PARQUET, COMPRESSION ZSTD, ROW_GROUP_SIZE 100_000);
```

> LZ4 compression is currently only available in the nightly and source builds:
Write a CSV file to an `LZ4_RAW`-compressed Parquet file:

```sql
Expand Down

0 comments on commit 28f0f55

Please sign in to comment.