Skip to content

Commit 03bc73d

Browse files
committed
fix: blog sequence
1 parent deb4b61 commit 03bc73d

5 files changed

Lines changed: 12 additions & 10 deletions

File tree

.cursor/skills/pgweekly-blog-generation/SKILL.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,12 @@ Generates English and Chinese technical blog posts from PostgreSQL mailing list
4040
- Chinese: `src/cn/{year}/{week}/{descriptive-filename}.md`
4141
- Filename: kebab-case from main topic (e.g. `planner-count-optimization`)
4242

43-
6. **Update** SUMMARY.md:
43+
6. **Update** SUMMARY.md and year READMEs:
4444
- Add entries under both `# 🇬🇧 English` and `# 🇨🇳 中文`
4545
- Follow existing hierarchy: year → week → link to article
46+
- **Put the new week/article at the top** (newest first): insert the new week immediately after the year line, so the latest week appears first in the list.
4647
- Create `src/en/{year}/{week}/README.md` and `src/cn/{year}/{week}/README.md` if missing
48+
- In `src/en/{year}/README.md` and `src/cn/{year}/README.md`, also add the new week at the **top** of the Weeks list (newest first).
4749

4850
## Year/Week
4951

src/SUMMARY.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
# 🇬🇧 English
44

55
- [2026](./en/2026/README.md)
6+
- [Week 07](./en/2026/07/README.md)
7+
- [Reducing LEFT JOIN to ANTI JOIN: A Planner Optimization for "WHERE col IS NULL"](./en/2026/07/anti-join-left-join-optimization.md)
68
- [Week 06](./en/2026/06/README.md)
79
- [COPY TO with JSON Format: Native JSON Export from PostgreSQL](./en/2026/06/copy-to-json-format.md)
810
- [Week 05](./en/2026/05/README.md)
@@ -13,14 +15,14 @@
1315
- [Week 03](./en/2026/03/README.md)
1416
- [Extended Statistics Import/Export Functions](./en/2026/03/extended-statistics-import-functions.md)
1517
- [pg_plan_advice: Query Plan Control](./en/2026/03/pg-plan-advice.md)
16-
- [Week 07](./en/2026/07/README.md)
17-
- [Reducing LEFT JOIN to ANTI JOIN: A Planner Optimization for "WHERE col IS NULL"](./en/2026/07/anti-join-left-join-optimization.md)
1818

1919
---
2020

2121
# 🇨🇳 中文
2222

2323
- [2026](./cn/2026/README.md)
24+
- [第 07 周](./cn/2026/07/README.md)
25+
- [将 LEFT JOIN 归约为 ANTI JOIN:针对 "WHERE col IS NULL" 的优化器优化](./cn/2026/07/anti-join-left-join-optimization.md)
2426
- [第 06 周](./cn/2026/06/README.md)
2527
- [COPY TO 的 JSON 格式:PostgreSQL 原生 JSON 导出](./cn/2026/06/copy-to-json-format.md)
2628
- [第 05 周](./cn/2026/05/README.md)
@@ -31,5 +33,3 @@
3133
- [第 03 周](./cn/2026/03/README.md)
3234
- [扩展统计信息导入/导出功能](./cn/2026/03/extended-statistics-import-functions.md)
3335
- [pg_plan_advice:查询计划控制](./cn/2026/03/pg-plan-advice.md)
34-
- [第 07 周](./cn/2026/07/README.md)
35-
- [将 LEFT JOIN 归约为 ANTI JOIN:针对 "WHERE col IS NULL" 的优化器优化](./cn/2026/07/anti-join-left-join-optimization.md)

src/cn/2026/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
## 各周
66

7+
- [第 07 周](./07/index.html)
8+
- [将 LEFT JOIN 归约为 ANTI JOIN:针对 "WHERE col IS NULL" 的优化器优化](./07/anti-join-left-join-optimization.md)
79
- [第 06 周](./06/index.html)
810
- [COPY TO 的 JSON 格式:PostgreSQL 原生 JSON 导出](./06/copy-to-json-format.md)
911
- [第 05 周](./05/index.html)
@@ -14,5 +16,3 @@
1416
- [第 03 周](./03/index.html)
1517
- [扩展统计信息导入/导出功能](./03/extended-statistics-import-functions.md)
1618
- [pg_plan_advice:查询计划控制](./03/pg-plan-advice.md)
17-
- [第 07 周](./07/README.md)
18-
- [将 LEFT JOIN 归约为 ANTI JOIN:针对 "WHERE col IS NULL" 的优化器优化](./07/anti-join-left-join-optimization.md)

src/en/2026/07/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
PostgreSQL mailing list discussions for Week 07, 2026.
44

5-
🇨🇳 [中文版本](../../../cn/2026/07/README.md)
5+
🇨🇳 [中文版本](../../../cn/2026/07/index.html)
66

77
## Articles
88

src/en/2026/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ PostgreSQL Weekly posts for 2026.
44

55
## Weeks
66

7+
- [Week 07](./07/index.html)
8+
- [Reducing LEFT JOIN to ANTI JOIN: A Planner Optimization for "WHERE col IS NULL"](./07/anti-join-left-join-optimization.md)
79
- [Week 06](./06/index.html)
810
- [COPY TO with JSON Format: Native JSON Export from PostgreSQL](./06/copy-to-json-format.md)
911
- [Week 05](./05/index.html)
@@ -14,5 +16,3 @@ PostgreSQL Weekly posts for 2026.
1416
- [Week 03](./03/index.html)
1517
- [Extended Statistics Import/Export Functions](./03/extended-statistics-import-functions.md)
1618
- [pg_plan_advice: Query Plan Control](./03/pg-plan-advice.md)
17-
- [Week 07](./07/README.md)
18-
- [Reducing LEFT JOIN to ANTI JOIN: A Planner Optimization for "WHERE col IS NULL"](./07/anti-join-left-join-optimization.md)

0 commit comments

Comments
 (0)