Skip to content

Commit

Permalink
PG-1245 Remove reset_val and boot_val from telemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
artemgavrilov committed Jan 10, 2025
1 parent d50b8cf commit f5eedf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion percona_pg_telemetry.c
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ write_pg_settings(void)
{
SPITupleTable *tuptable;
int spi_result;
char *query = "SELECT name, unit, setting, reset_val, boot_val FROM pg_settings where vartype != 'string'";
char *query = "SELECT name, unit, setting FROM pg_settings where vartype != 'string'";
char buf[4096] = {0};
size_t buf_size = sizeof(buf);
FILE *fp;
Expand Down

0 comments on commit f5eedf7

Please sign in to comment.