diff options
author | Michael Paquier <michael@paquier.xyz> | 2022-10-13 16:03:01 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2022-10-13 16:03:01 +0900 |
commit | 56c19fee2db43f236eb8f4cbef5235701873fceb (patch) | |
tree | 57d9e925e097d1d439dc0c48ee3ebdfbfd8f1874 | |
parent | 5263c6b095c9bac2a4a744b72425e6690121c79d (diff) | |
download | postgresql-56c19fee2db43f236eb8f4cbef5235701873fceb.tar.gz postgresql-56c19fee2db43f236eb8f4cbef5235701873fceb.zip |
Add missing isolation test for test_decoding in meson build
Oversight in 7f13ac8, where catalog_change_snapshot was missing from the
list in meson.build.
Author: Hayato Kuroda
Discussion: https://postgr.es/m/TYAPR01MB58662C932F45A13C6F9BE352F5259@TYAPR01MB5866.jpnprd01.prod.outlook.com
-rw-r--r-- | contrib/test_decoding/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/test_decoding/meson.build b/contrib/test_decoding/meson.build index 6376103c689..6876792fd86 100644 --- a/contrib/test_decoding/meson.build +++ b/contrib/test_decoding/meson.build @@ -49,6 +49,7 @@ tests += { 'mxact', 'delayed_startup', 'ondisk_startup', + 'catalog_change_snapshot', 'concurrent_ddl_dml', 'oldest_xmin', 'snapshot_transfer', |