Skip to content

Commit 91f0a00

Browse files
Merge pull request #262 from HarperDB/format
format pass
2 parents 43a44e2 + 9dc167c commit 91f0a00

File tree

37 files changed

+790
-788
lines changed

37 files changed

+790
-788
lines changed

.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
workflow_dispatch:
1111

1212
# Concurrency configuration to manage parallel workflow runs
13-
#
13+
#
1414
# Group composition: pages-<event_type>-<unique_identifier>
1515
# - event_type: 'pull_request', 'push', or 'workflow_dispatch'
1616
# - unique_identifier: PR number for PRs, branch ref for pushes/manual runs

docs/administration/harper-studio/query-instance-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ SQL queries can be executed directly through the Harper Studio with the followin
1313
1. Enter your SQL query in the SQL query window.
1414
1. Click **Execute**.
1515

16-
_Please note, the Studio will execute the query exactly as entered. For example, if you attempt to `SELECT _` from a table with millions of rows, you will most likely crash your browser._
16+
_Please note, the Studio will execute the query exactly as entered. For example, if you attempt to `SELECT *` from a table with millions of rows, you will most likely crash your browser._
1717

1818
## Browse Query Results Set
1919

docs/developers/operations-api/clustering.md

Lines changed: 25 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -146,33 +146,31 @@ _Operation is restricted to super_user roles only_
146146

147147
```json
148148
{
149-
"type": "cluster-status",
150-
"connections": [
151-
{
152-
"replicateByDefault": true,
153-
"replicates": true,
154-
"url": "wss://server-2.domain.com:9933",
155-
"name": "server-2.domain.com",
156-
"subscriptions": null,
157-
"database_sockets": [
158-
{
159-
"database": "data",
160-
"connected": true,
161-
"latency": 0.70,
162-
"thread_id": 1,
163-
"nodes": [
164-
"server-2.domain.com"
165-
],
166-
"lastCommitConfirmed": "Wed, 12 Feb 2025 19:09:34 GMT",
167-
"lastReceivedRemoteTime": "Wed, 12 Feb 2025 16:49:29 GMT",
168-
"lastReceivedLocalTime": "Wed, 12 Feb 2025 16:50:59 GMT",
169-
"lastSendTime": "Wed, 12 Feb 2025 16:50:59 GMT"
170-
}
171-
]
172-
}
173-
],
174-
"node_name": "server-1.domain.com",
175-
"is_enabled": true
149+
"type": "cluster-status",
150+
"connections": [
151+
{
152+
"replicateByDefault": true,
153+
"replicates": true,
154+
"url": "wss://server-2.domain.com:9933",
155+
"name": "server-2.domain.com",
156+
"subscriptions": null,
157+
"database_sockets": [
158+
{
159+
"database": "data",
160+
"connected": true,
161+
"latency": 0.7,
162+
"thread_id": 1,
163+
"nodes": ["server-2.domain.com"],
164+
"lastCommitConfirmed": "Wed, 12 Feb 2025 19:09:34 GMT",
165+
"lastReceivedRemoteTime": "Wed, 12 Feb 2025 16:49:29 GMT",
166+
"lastReceivedLocalTime": "Wed, 12 Feb 2025 16:50:59 GMT",
167+
"lastSendTime": "Wed, 12 Feb 2025 16:50:59 GMT"
168+
}
169+
]
170+
}
171+
],
172+
"node_name": "server-1.domain.com",
173+
"is_enabled": true
176174
}
177175
```
178176

docs/developers/operations-api/components.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -460,9 +460,9 @@ _Operation is restricted to super_user roles only_
460460

461461
```json
462462
[
463-
{
464-
"name": "harperdb-private-component"
465-
}
463+
{
464+
"name": "harperdb-private-component"
465+
}
466466
]
467467
```
468468

docs/developers/replication/sharding.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ or you can specify nodes:
6363

6464
```jsonc
6565
{
66-
// ...
67-
"replicateTo": ["node-1", "node-2"]
68-
// ...
66+
// ...
67+
"replicateTo": ["node-1", "node-2"],
68+
// ...
6969
}
7070
```
7171

docs/developers/sql-guide/functions.md

Lines changed: 89 additions & 89 deletions
Large diffs are not rendered by default.

docs/getting-started/first-harper-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ curl -X POST http://localhost:9926/Dog/ \
9595
-H "Content-Type: application/json" \
9696
-d '{
9797
"name": "Harper",
98-
"breed": "Labrador",
98+
"breed": "Labrador",
9999
"age": 3,
100100
"tricks": ["sits"]
101101
}'

docs/technical-details/release-notes/v4-tucker/4.6.4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar_position: 59395
77

88
8/1/2025
99

10-
- Fix for sending blobs on-demand without deleting before sent
10+
- Fix for sending blobs on-demand without deleting before sent
1111
- Fix for copying blobs in full table copy in a clone
1212
- Freeze records in new resource mode
1313
- Improvement in connection handling with disconnections

docs/technical-details/release-notes/v4-tucker/4.6.5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ sidebar_position: 59394
99

1010
- Add more analytics for replication, including transfer for blobs
1111
- Avoid attempts to connect to oneself for missing data
12-
- Adjustments to logging
12+
- Adjustments to logging

docs/technical-details/release-notes/v4-tucker/4.6.6.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ sidebar_position: 59393
1010
- Fix the auditing of hdb_nodes on install to ensure full connection of nodes when joining
1111
- Copy blob buffers to ensure that small buffers are not replaced with frequent usage
1212
- Separate replication subscription connections from on-demand connection retrieval
13-
- Fix for fail over connection handling
13+
- Fix for fail over connection handling

0 commit comments

Comments
 (0)