Clarify some comments making use of leetspeak term "up2date"
authorMichael Paquier <michael@paquier.xyz>
Wed, 28 Jul 2021 01:31:24 +0000 (10:31 +0900)
committerMichael Paquier <michael@paquier.xyz>
Wed, 28 Jul 2021 01:31:24 +0000 (10:31 +0900)
Most of these are new, as of a8fd13c, and "up-to-date" is much easier to
parse for the average reader.

Author: Peter Smith
Discussion: https://postgr.es/m/CAHut+PtHbHvgOjs_R9LyDF21j-Wn8SxoTtWMQNP2ifXN6t2cSg@mail.gmail.com

src/backend/jit/llvm/llvmjit_expr.c
src/backend/replication/logical/logical.c

index 8a4075bdaf2547a53b5b205acab63da4539096b8..6d1181225e85c59213904f8638731d92cfbbf471 100644 (file)
@@ -2386,7 +2386,7 @@ llvm_compile_expr(ExprState *state)
  * Run compiled expression.
  *
  * This will only be called the first time a JITed expression is called. We
- * first make sure the expression is still up2date, and then get a pointer to
+ * first make sure the expression is still up-to-date, and then get a pointer to
  * the emitted function. The latter can be the first thing that triggers
  * optimizing and emitting all the generated functions.
  */
index d61ef4cfada7875bae7937e78a469a39d46e151e..8dcb564af8f63375d03e3355de874c0a741fb533 100644 (file)
@@ -1048,7 +1048,7 @@ change_cb_wrapper(ReorderBuffer *cache, ReorderBufferTXN *txn,
    ctx->write_xid = txn->xid;
 
    /*
-    * report this change's lsn so replies from clients can give an up2date
+    * Report this change's lsn so replies from clients can give an up-to-date
     * answer. This won't ever be enough (and shouldn't be!) to confirm
     * receipt of this transaction, but it might allow another transaction's
     * commit to be confirmed with one message.
@@ -1088,7 +1088,7 @@ truncate_cb_wrapper(ReorderBuffer *cache, ReorderBufferTXN *txn,
    ctx->write_xid = txn->xid;
 
    /*
-    * report this change's lsn so replies from clients can give an up2date
+    * Report this change's lsn so replies from clients can give an up-to-date
     * answer. This won't ever be enough (and shouldn't be!) to confirm
     * receipt of this transaction, but it might allow another transaction's
     * commit to be confirmed with one message.
@@ -1225,10 +1225,10 @@ stream_start_cb_wrapper(ReorderBuffer *cache, ReorderBufferTXN *txn,
    ctx->write_xid = txn->xid;
 
    /*
-    * report this message's lsn so replies from clients can give an up2date
-    * answer. This won't ever be enough (and shouldn't be!) to confirm
-    * receipt of this transaction, but it might allow another transaction's
-    * commit to be confirmed with one message.
+    * Report this message's lsn so replies from clients can give an
+    * up-to-date answer. This won't ever be enough (and shouldn't be!) to
+    * confirm receipt of this transaction, but it might allow another
+    * transaction's commit to be confirmed with one message.
     */
    ctx->write_location = first_lsn;
 
@@ -1272,10 +1272,10 @@ stream_stop_cb_wrapper(ReorderBuffer *cache, ReorderBufferTXN *txn,
    ctx->write_xid = txn->xid;
 
    /*
-    * report this message's lsn so replies from clients can give an up2date
-    * answer. This won't ever be enough (and shouldn't be!) to confirm
-    * receipt of this transaction, but it might allow another transaction's
-    * commit to be confirmed with one message.
+    * Report this message's lsn so replies from clients can give an
+    * up-to-date answer. This won't ever be enough (and shouldn't be!) to
+    * confirm receipt of this transaction, but it might allow another
+    * transaction's commit to be confirmed with one message.
     */
    ctx->write_location = last_lsn;
 
@@ -1443,7 +1443,7 @@ stream_change_cb_wrapper(ReorderBuffer *cache, ReorderBufferTXN *txn,
    ctx->write_xid = txn->xid;
 
    /*
-    * report this change's lsn so replies from clients can give an up2date
+    * Report this change's lsn so replies from clients can give an up-to-date
     * answer. This won't ever be enough (and shouldn't be!) to confirm
     * receipt of this transaction, but it might allow another transaction's
     * commit to be confirmed with one message.
@@ -1535,7 +1535,7 @@ stream_truncate_cb_wrapper(ReorderBuffer *cache, ReorderBufferTXN *txn,
    ctx->write_xid = txn->xid;
 
    /*
-    * report this change's lsn so replies from clients can give an up2date
+    * Report this change's lsn so replies from clients can give an up-to-date
     * answer. This won't ever be enough (and shouldn't be!) to confirm
     * receipt of this transaction, but it might allow another transaction's
     * commit to be confirmed with one message.