Skip to content

Commit ccce01e

Browse files
mtopolnikclaude
andcommitted
docs: remove obsolete cairo.sql.backup.* config keys
The old table backup feature was removed in QuestDB 9.3.2 (questdb/questdb#6558). Remove the four cairo.sql.backup.* config keys from the configuration docs, the BACKUP TABLE permission from the RBAC reference, and update the SHOW PARAMETERS example that referenced cairo.sql.backup.root. Fixes questdb/questdb#6767 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 95f4fa9 commit ccce01e

3 files changed

Lines changed: 2 additions & 19 deletions

File tree

documentation/configuration/configuration-utils/_cairo.config.json

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,6 @@
1919
"default": "1 second",
2020
"description": "The minimum size of in-memory buffer in milliseconds. The buffer is allocated dynamically through analyzing the shape of the incoming data, and `o3MinLag` is the lower limit."
2121
},
22-
"cairo.sql.backup.root": {
23-
"default": "null",
24-
"description": "Output root directory for backups."
25-
},
26-
"cairo.sql.backup.dir.datetime.format": {
27-
"default": "null",
28-
"description": "Date format for backup directory."
29-
},
30-
"cairo.sql.backup.dir.tmp.name": {
31-
"default": "tmp",
32-
"description": "Name of tmp directory used during backup."
33-
},
34-
"cairo.sql.backup.mkdir.mode": {
35-
"default": "509",
36-
"description": "Permission used when creating backup directories."
37-
},
3822
"cairo.snapshot.instance.id": {
3923
"default": "empty string",
4024
"description": "Instance id to be included into disk snapshots."

documentation/query/sql/show.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ You can optionally chain `SHOW PARAMETERS` with other clauses:
169169
-- This query will return all parameters where the value contains 'tmp', ignoring upper/lower case
170170
(SHOW PARAMETERS) WHERE value ILIKE '%tmp%';
171171
172-
-- This query will return all parameters where the property_path is not 'cairo.root' or 'cairo.sql.backup.root', ordered by the first column
173-
(SHOW PARAMETERS) WHERE property_path NOT IN ('cairo.root', 'cairo.sql.backup.root') ORDER BY 1;
172+
-- This query will return all parameters where the property_path is not 'cairo.root' or 'cairo.snapshot.instance.id', ordered by the first column
173+
(SHOW PARAMETERS) WHERE property_path NOT IN ('cairo.root', 'cairo.snapshot.instance.id') ORDER BY 1;
174174
175175
-- This query will return all parameters where the value_source is 'env'
176176
(SHOW PARAMETERS) WHERE value_source = 'env';

documentation/security/rbac.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,6 @@ SELECT * FROM all_permissions();
565565
| ALTER COLUMN TYPE | Database &#124; Table &#124; Column | Change column types |
566566
| ATTACH PARTITION | Database &#124; Table | Attach partitions |
567567
| BACKUP DATABASE | Database | Create database backups |
568-
| BACKUP TABLE | Database &#124; Table | Create table backups |
569568
| CANCEL ANY COPY | Database | Cancel COPY operations |
570569
| CREATE TABLE | Database | Create tables |
571570
| CREATE MATERIALIZED VIEW | Database | Create materialized views |

0 commit comments

Comments
 (0)