Skip to content

Commit

Permalink
Fix to use a tab instead of spaces (#8394)
Browse files Browse the repository at this point in the history
## Problem
There were spaces instead of a tab in the C source file.

## Summary of changes
I fixed to use a tab instead of spaces.
  • Loading branch information
shinyaaa authored Jul 23, 2024
1 parent 563d73d commit d47c94b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pgxn/neon/neon.c
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ _PG_init(void)

pg_init_libpagestore();
pg_init_walproposer();
WalSender_Custom_XLogReaderRoutines = NeonOnDemandXLogReaderRoutines;
WalSender_Custom_XLogReaderRoutines = NeonOnDemandXLogReaderRoutines;
LogicalFuncs_Custom_XLogReaderRoutines = NeonOnDemandXLogReaderRoutines;

InitLogicalReplicationMonitor();
Expand Down

1 comment on commit d47c94b

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

3214 tests run: 3081 passed, 0 failed, 133 skipped (full report)


Flaky tests (1)

Postgres 15

  • test_secondary_background_downloads: release

Code coverage* (full report)

  • functions: 32.6% (7003 of 21497 functions)
  • lines: 50.0% (55265 of 110586 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
d47c94b at 2024-07-23T17:20:23.854Z :recycle:

Please sign in to comment.