Skip to content

Commit f685ff9

Browse files
authored
Remove rebase marker from .gitignore (#1488)
1 parent b5d2b90 commit f685ff9

2 files changed

Lines changed: 0 additions & 13 deletions

File tree

.gitignore

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,11 @@
1010
*.so.[0-9]
1111
*.so.[0-9].[0-9]
1212
*.so.[0-9].[0-9][0-9]
13-
<<<<<<< HEAD
1413
*.sl
1514
*.sl.[0-9]
1615
*.sl.[0-9].[0-9]
1716
*.sl.[0-9].[0-9][0-9]
1817
*.swp
19-
=======
20-
>>>>>>> REL_16_9
2118
*.dylib
2219
*.dll
2320
*.exp
@@ -80,9 +77,6 @@ lib*.pc
8077
/CMakeLists.txt
8178
/compile_commands.json
8279
/tmp_install/
83-
<<<<<<< HEAD
8480
/.cache/
8581
/install/
86-
=======
8782
/portlock/
88-
>>>>>>> REL_16_9

contrib/pg_visibility/pg_visibility.c

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -787,14 +787,7 @@ tuple_all_visible(Relation rel, HeapTuple tup, TransactionId OldestXmin, Buffer
787787
static void
788788
check_relation_relkind(Relation rel)
789789
{
790-
<<<<<<< HEAD
791-
if (rel->rd_rel->relkind != RELKIND_RELATION &&
792-
rel->rd_rel->relkind != RELKIND_MATVIEW &&
793-
rel->rd_rel->relkind != RELKIND_TOASTVALUE &&
794-
rel->rd_rel->relkind != RELKIND_DIRECTORY_TABLE)
795-
=======
796790
if (!RELKIND_HAS_TABLE_AM(rel->rd_rel->relkind))
797-
>>>>>>> REL_16_9
798791
ereport(ERROR,
799792
(errcode(ERRCODE_WRONG_OBJECT_TYPE),
800793
errmsg("relation \"%s\" is of wrong relation kind",

0 commit comments

Comments
 (0)