Re: [PATCH] Teach pg_waldump to extract FPIs from the WAL

2022-11-08 Thread sho kato
@@ -972,6 +1093,25 @@ main(int argc, char **argv) } } + int dir_status = pg_check_dir(config.save_fpw_path); + + if (dir_status < 0) + { + pg_log_error("could not access output directory: %s", config.save_fpw_path); + goto bad_argument; + } Should we output %s enclosed with \"? Regards, Sho Kato

Re: Delay locking partitions during INSERT and UPDATE

2019-01-17 Thread sho kato
Filter: ((a >= $1) AND (a <= $2) AND (b <= $3)) -(8 rows) + Filter: ((a >= 2) AND (a <= 2) AND (b <= 3)) +(7 rows) regards, sho kato

Difference of ecpg japanese translation in PG15

2023-02-07 Thread Sho Kato (Fujitsu)
Hello In PG15, ecpg japanese translation are different from other branches. Is there a reason for this? If not, I think it would be better to make it the same as the other branch like the attached patch. regards, sho kato update-japanese-translation.patch Description: update-japanese

Fix a typo in rewriteHandler.c

2023-06-15 Thread Sho Kato (Fujitsu)
CMD_DELETE) { foreach(lc, parsetree->targetList) s/rewriteQuery/RewriteQuery regards, Sho Kato diff --git a/src/backend/rewrite/rewriteHandler.c b/src/backend/rewrite/rewriteHandler.c index 5a7b914183..b486ab559a 100644 --- a/src/backend/rewrite/rewriteHandler.c +++ b/src/b