mirror of https://github.com/postgres/postgres
Previusly the tool was named pg_tde_alter_key_provider, but in the help message it referred to itself as pg_tde_modify_key_provider. Instead of any of that, the name should align with the online function, which i pg_tde_change_key_provider. This commit renames the tool and addresses the help message. Also, the help message is now more detailed to make the parameters cleaner.pull/209/head
parent
3824063e66
commit
e973d95d7c
@ -1 +0,0 @@ |
|||||||
/pg_tde_alter_key_provider |
|
@ -0,0 +1 @@ |
|||||||
|
/pg_tde_change_key_provider |
@ -1,22 +1,22 @@ |
|||||||
pg_tde_alter_key_provider_sources = files( |
pg_tde_change_key_provider_sources = files( |
||||||
'pg_tde_alter_key_provider.c', |
'pg_tde_change_key_provider.c', |
||||||
) |
) |
||||||
|
|
||||||
link_w = [pg_tde_frontend] |
link_w = [pg_tde_frontend] |
||||||
include_dirs = [postgres_inc, pg_tde_inc] |
include_dirs = [postgres_inc, pg_tde_inc] |
||||||
|
|
||||||
pg_tde_alter_key_provider = executable('pg_tde_alter_key_provider', |
pg_tde_change_key_provider = executable('pg_tde_change_key_provider', |
||||||
pg_tde_alter_key_provider_sources, |
pg_tde_change_key_provider_sources, |
||||||
dependencies: [frontend_code, lz4, zstd], |
dependencies: [frontend_code, lz4, zstd], |
||||||
c_args: ['-DFRONTEND'], # needed for xlogreader et al |
c_args: ['-DFRONTEND'], # needed for xlogreader et al |
||||||
kwargs: default_bin_args, |
kwargs: default_bin_args, |
||||||
include_directories: include_dirs, |
include_directories: include_dirs, |
||||||
link_with: link_w |
link_with: link_w |
||||||
) |
) |
||||||
bin_targets += pg_tde_alter_key_provider |
bin_targets += pg_tde_change_key_provider |
||||||
|
|
||||||
tests += { |
tests += { |
||||||
'name': 'pg_tde_alter_key_provider', |
'name': 'pg_tde_change_key_provider', |
||||||
'sd': meson.current_source_dir(), |
'sd': meson.current_source_dir(), |
||||||
'bd': meson.current_build_dir(), |
'bd': meson.current_build_dir(), |
||||||
'tap': { |
'tap': { |
Loading…
Reference in new issue