Skip to content

Commit e3023fd

Browse files
committed
Fix CI result
1 parent 19e96ee commit e3023fd

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/CI.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
test:
2525
needs: detect-pgversion
2626
env:
27-
SQLITE_VERSION : "3490000"
28-
SQLITE_YEAR: "2025"
27+
SQLITE_VERSION : "3460000"
28+
SQLITE_YEAR: "2024"
2929
POSTGIS_VERSION : "3.4.2"
3030
HTTP_PROXY: ""
3131
HTTPS_PROXY: ""

deparse.c

-6
Original file line numberDiff line numberDiff line change
@@ -2303,7 +2303,6 @@ sqlite_deparse_column_ref(StringInfo buf, int varno, int varattno, PlannerInfo *
23032303
if (strcmp(def->defname, "column_name") == 0)
23042304
{
23052305
colname = defGetString(def);
2306-
<<<<<<< HEAD
23072306
elog(DEBUG1, "column name = %s\n", colname);
23082307
break;
23092308
}
@@ -2313,11 +2312,6 @@ sqlite_deparse_column_ref(StringInfo buf, int varno, int varattno, PlannerInfo *
23132312
elog(DEBUG4, "column type = %s", coltype);
23142313
colaff = sqlite_affinity_code(coltype);
23152314
}
2316-
=======
2317-
elog(DEBUG3, "sqlite_fdw : %s, column_name opt = %s\n", __func__, colname);
2318-
break;
2319-
}
2320-
>>>>>>> 9764c26 (Add initial SpatiaLitePostGIS support (#96))
23212315
}
23222316

23232317
/*

0 commit comments

Comments
 (0)