summaryrefslogtreecommitdiff
path: root/src/include/commands/copyfrom_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/commands/copyfrom_internal.h')
-rw-r--r--src/include/commands/copyfrom_internal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/commands/copyfrom_internal.h b/src/include/commands/copyfrom_internal.h
index ac2c16f8b86..5ec41589cdc 100644
--- a/src/include/commands/copyfrom_internal.h
+++ b/src/include/commands/copyfrom_internal.h
@@ -25,7 +25,7 @@ typedef enum CopySource
{
COPY_FILE, /* from file (or a piped program) */
COPY_FRONTEND, /* from frontend */
- COPY_CALLBACK /* from callback function */
+ COPY_CALLBACK, /* from callback function */
} CopySource;
/*
@@ -36,7 +36,7 @@ typedef enum EolType
EOL_UNKNOWN,
EOL_NL,
EOL_CR,
- EOL_CRNL
+ EOL_CRNL,
} EolType;
/*
@@ -47,7 +47,7 @@ typedef enum CopyInsertMethod
CIM_SINGLE, /* use table_tuple_insert or ExecForeignInsert */
CIM_MULTI, /* always use table_multi_insert or
* ExecForeignBatchInsert */
- CIM_MULTI_CONDITIONAL /* use table_multi_insert or
+ CIM_MULTI_CONDITIONAL, /* use table_multi_insert or
* ExecForeignBatchInsert only if valid */
} CopyInsertMethod;