[PATCH] Add log_transaction setting

2024-07-04 Thread Sergey Solovev
y in fast path, PARSE and BIND functions - by default these are logged if transaction is sampled, so we are compliant with existing behaviour again. In first implementation version, there was boolean flag (instead of List), but it was replaced by List to defer determining (funct

[BUG FIX]: invalid meson version detection

2024-08-14 Thread Sergey Solovev
Hi. I looked at meson.build file at found an incorrectly used function to determine postgres version. > if pg_version.endswith('devel') >   pg_version_arr = [pg_version.split('devel')[0], '0'] There should be `pg_version.contains('devel')`, not `endswith`. Like this: -if pg_version.endswit