0001-Fixed-comment-and-guard-name-in-vci_pg_copy.h.patch

text/x-patch

Filename: 0001-Fixed-comment-and-guard-name-in-vci_pg_copy.h.patch
Type: text/x-patch
Part: 0
Message: Re: [WIP]Vertical Clustered Index (columnar store extension) - take2

Patch

Same data as JSON: GET /api/v1/attachments/:id/patch the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes. API reference →
Format: format-patch
Series: patch 0001
Subject: Fixed comment and guard name in vci_pg_copy.h
File+
contrib/vci/include/vci_pg_copy.h 5 5
From e045a80d50e2a0ad211634ff6dfcf5f0f46de36b Mon Sep 17 00:00:00 2001
From: Timur Magomedov <t.magomedov@postgrespro.ru>
Date: Thu, 14 Aug 2025 20:09:37 +0300
Subject: [PATCH 1/4] Fixed comment and guard name in vci_pg_copy.h

---
 contrib/vci/include/vci_pg_copy.h | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/contrib/vci/include/vci_pg_copy.h b/contrib/vci/include/vci_pg_copy.h
index 5a1ec07009a..068162f5c16 100644
--- a/contrib/vci/include/vci_pg_copy.h
+++ b/contrib/vci/include/vci_pg_copy.h
@@ -1,18 +1,18 @@
 /*-------------------------------------------------------------------------
  *
- * vci_numeric.h
+ * vci_pg_copy.h
  *    Some useful functions of PostgreSQL
  *
  * Portions Copyright (c) 2025, PostgreSQL Global Development Group
  *
  * IDENTIFICATION
- *		contrib/vci/include/vci_numeric.h
+ *		contrib/vci/include/vci_pg_copy.h
  *
  *-------------------------------------------------------------------------
  */
 
-#ifndef VCI_NUMERIC_H
-#define VCI_NUMERIC_H
+#ifndef VCI_PG_COPY_H
+#define VCI_PG_COPY_H
 
 #include "datatype/timestamp.h"
 
@@ -74,4 +74,4 @@ interval_cmp_value(const Interval *interval)
 	return span;
 }
 
-#endif							/* #ifndef VCI_NUMERIC_H */
+#endif							/* #ifndef VCI_PG_COPY_H */
-- 
2.43.0