Skip to content

Commit a4f4cd7

Browse files
author
Daniel Shelepanov
committed
[PGPRO-4561] indentation and typo fixed after review
1 parent f79ebd9 commit a4f4cd7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pg_query_state.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
#define QUEUE_SIZE (16 * 1024)
2121
#define MSG_MAX_SIZE 1024
22-
#define WRITING_DELAY (100 * 1000) // 100ms
22+
#define WRITING_DELAY (100 * 1000) /* 100ms */
2323
#define NUM_OF_ATTEMPTS 6
2424

2525
#define TIMINIG_OFF_WARNING 1

signal_handler.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ serialize_stack(char *dest, List *qs_stack)
163163
static msg_by_parts_result
164164
shm_mq_send_nonblocking(shm_mq_handle *mqh, Size nbytes, const void *data, Size attempts)
165165
{
166-
int i;
166+
int i;
167167
shm_mq_result res;
168168

169169
for(i = 0; i < attempts; i++)
@@ -186,7 +186,7 @@ shm_mq_send_nonblocking(shm_mq_handle *mqh, Size nbytes, const void *data, Size
186186
}
187187

188188
/*
189-
* send_msg_by_parts sends data throurh the queue as a bunch of messages
189+
* send_msg_by_parts sends data through the queue as a bunch of messages
190190
* of smaller size
191191
*/
192192
static msg_by_parts_result

0 commit comments

Comments
 (0)