Skip to content

Commit

Permalink
Merge pull request #8281 from cockroachdb/release-notes
Browse files Browse the repository at this point in the history
Update v20.2.0-beta.1.md
  • Loading branch information
ericharmeling authored Sep 14, 2020
2 parents 83cdd44 + 56a8944 commit 5a03911
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions releases/v20.2.0-beta.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ In addition to various updates, enhancements, and bug fixes, this first v20.2 be

- **Backup schedules:** You can now set up a recurring schedule that lets CockroachDB handle scheduling, conflict resolution, and resilience for your backups. Previously, it was necessary to create your own scheduler service or cron job to kick off [`BACKUP`](../v20.2/backup.html) jobs. To create a schedule for a cluster-level backup that runs a full backup every day with the first full backup taken "now", run `CREATE SCHEDULE test_backup_schedule FOR BACKUP INTO ‘<your-backup-storage-location’ RECURRING ‘@daily’ FULL BACKUP ALWAYS WITH EXPERIMENTAL SCHEDULE OPTIONS first_run=NOW`.
- The following SQL features improve CockroachDB's PostgreSQL compatibility:
- **User-defined schemas:** Within a given database, you can now create schemas to organize your data and create finer-grained access controls. To enable user-defined schemas, set the [cluster setting](../v20.2/cluster-settings.html) `sql.defaults.experimental_user_defined_schemas.enabled` to `true`. Previously, the recommendation was to create a database wherever you would normally create a schema. Now, an existing database can be converted to a schema under an existing database using [`ALTER DATABASE ... CONVERT TO SCHEMA WITH PARENT ...`](../v20.2/alter-database.html).
- **Enums:** `ENUM` [types](../v20.2/data-types.html) can now be created in CockroachDB using `CREATE TYPE ... AS ENUM`. To create enums, set the [cluster setting](../v20.2/cluster-settings.html) `sql.defaults.experimental_enums.enabled` to `true`. A column type can be set to an `ENUM` type, which limits the column values to those defined in the `ENUM`.
- **User-defined schemas:** Within a given database, you can now create schemas to organize your data and create finer-grained access controls. Previously, the recommendation was to create a database wherever you would normally create a schema. Now, an existing database can be converted to a schema under an existing database using [`ALTER DATABASE ... CONVERT TO SCHEMA WITH PARENT ...`](../v20.2/alter-database.html).
- **Enums:** `ENUM` [types](../v20.2/data-types.html) can now be created in CockroachDB using `CREATE TYPE ... AS ENUM`. A column type can be set to an `ENUM` type, which limits the column values to those defined in the `ENUM`.

Get future release notes emailed to you:

Expand Down Expand Up @@ -517,4 +517,4 @@ We would like to thank the following contributors from the CockroachDB community
[fbb4338b8]: https://github.com/cockroachdb/cockroach/commit/fbb4338b8
[ff3958f1e]: https://github.com/cockroachdb/cockroach/commit/ff3958f1e
[#7782]: https://github.com/cockroachdb/docs/pull/7782
[#8035]: https://github.com/cockroachdb/docs/pull/8035
[#8035]: https://github.com/cockroachdb/docs/pull/8035

0 comments on commit 5a03911

Please sign in to comment.