Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(docs): remove unsupported show server_conf statement #32

Merged
merged 3 commits into from
Jul 31, 2024
Merged
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 reference/operators/spatial.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ calculations. For more information on this type of data, see the
### within

`within(geohash, ...)` - evaluates if a comma-separated list of geohashes are
equal to are within another geohash:
equal to or within another geohash:

- The `within` operator can only be used in `LATEST ON` queries and all symbol
columns within the query **must be indexed**.
Expand Down
56 changes: 10 additions & 46 deletions reference/sql/show.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ and partition storage size on disk.
- `SHOW SERVICE ACCOUNT` displays details of a service account (enterprise-only)
- `SHOW PERMISSIONS` displays permissions of user, group or service account
(enterprise-only)
- `SHOW SERVER_CONF` shows the content of QuestDB's server.conf configuration
file. (enterprise-only)

## Examples

Expand Down Expand Up @@ -156,17 +154,13 @@ SHOW GROUPS john;
### SHOW SERVICE ACCOUNT

```questdb-sql

SHOW SERVICE ACCOUNT;

```

or

```questdb-sql

SHOW SERVICE ACCOUNT ilp_ingestion;

```

| auth_type | enabled |
Expand All @@ -178,41 +172,28 @@ SHOW SERVICE ACCOUNT ilp_ingestion;
### SHOW SERVICE ACCOUNTS

```questdb-sql

SHOW SERVICE ACCOUNTS;

```

| name |

|-------------|

| name |
| ---------- |
| management |

| svc1_admin |

```questdb-sql

SHOW SERVICE ACCOUNTS john;

```

| name |

|-------------|

| name |
| ---------- |
| svc1_admin |

```questdb-sql

SHOW SERVICE ACCOUNTS admin_group;

```

| name |

|-------------|

| name |
| ---------- |
| svc1_admin |

### SHOW PERMISSIONS FOR CURRENT USER
Expand Down Expand Up @@ -252,20 +233,14 @@ SHOW PERMISSIONS admin_group;
#### For a service account

```questdb-sql

SHOW PERMISSIONS ilp_ingestion;

```

| permission | table_name | column_name | grant_option | origin |

|------------|------------|-------------|--------------|--------|

| SELECT | | | t | G |

| INSERT | | | f | G |

| UPDATE | | | f | G |
| ---------- | ---------- | ----------- | ------------ | ------ |
| SELECT | | | t | G |
| INSERT | | | f | G |
| UPDATE | | | f | G |

### SHOW SERVER_VERSION

Expand All @@ -279,17 +254,6 @@ SHOW SERVER_VERSION;
| -------------- |
| 12.3 (questdb) |

### SHOW SERVER_CONF

```questdb-sql
SHOW SERVER_CONF;
```

| name | value |
| ------------------------ | ----- |
| config.validation.strict | true |
| query.timeout.sec | 60 |

## See also

The following functions allow querying tables with filters and using the results
Expand Down
Loading