jit_comments.patch
text/x-diff
Patch
Format: unified
| File | + | − |
|---|---|---|
| src/backend/jit/llvm/llvmjit_deform.c | 4 | 4 |
diff --git a/src/backend/jit/llvm/llvmjit_deform.c b/src/backend/jit/llvm/llvmjit_deform.c
index 94b4635218..e7aa92e274 100644
--- a/src/backend/jit/llvm/llvmjit_deform.c
+++ b/src/backend/jit/llvm/llvmjit_deform.c
@@ -298,9 +298,9 @@ slot_compile_deform(LLVMJitContext *context, TupleDesc desc,
}
/*
- * Check if's guaranteed the all the desired attributes are available in
- * tuple. If so, we can start deforming. If not, need to make sure to
- * fetch the missing columns.
+ * Check if all the desired attributes are available in the tuple. If so,
+ * we can start deforming. If not, we need to make sure to fetch the
+ * missing columns.
*/
if ((natts - 1) <= guaranteed_column_number)
{
@@ -383,7 +383,7 @@ slot_compile_deform(LLVMJitContext *context, TupleDesc desc,
/*
* If this is the first attribute, slot->tts_nvalid was 0. Therefore
- * reset offset to 0 to, it be from a previous execution.
+ * reset offset to 0 too, as it may be from a previous execution.
*/
if (attnum == 0)
{