Skip to content

Commit

Permalink
mod
Browse files Browse the repository at this point in the history
  • Loading branch information
gayyappan committed Sep 19, 2023
1 parent b4c2b56 commit b6fb493
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/osm_callbacks.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ts_get_osm_callbacks(void)
return *ptr;
}

/* This interface and version of the struct will be remove donce we have a new version of OSM on all
/* This interface and version of the struct will be removed once we have a new version of OSM on all
* instances
*/
static OsmCallbacks *
Expand Down
4 changes: 2 additions & 2 deletions tsl/test/src/test_chunk_stats.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ osm_ht_drop_chunks_hook_mock(Oid osm_chunk_oid, const char *schema_name, const c
{
List *ret = NIL;

Check warning on line 61 in tsl/test/src/test_chunk_stats.c

View check run for this annotation

Codecov / codecov/patch

tsl/test/src/test_chunk_stats.c#L61

Added line #L61 was not covered by tests
elog(NOTICE, "hypertable_drop_chunks_hook ");
for (int i = 1; i < 2; i++)
for (int i = 0; i < 2; i++)
{
char *chunk_name;
chunk_name = psprintf("%s", "_timescaledb_internal.dummy");
chunk_name = psprintf("%s%d", "_timescaledb_internal.dummy", i);
ret = lappend(ret, chunk_name);
}
return ret;

Check warning on line 69 in tsl/test/src/test_chunk_stats.c

View check run for this annotation

Codecov / codecov/patch

tsl/test/src/test_chunk_stats.c#L66-L69

Added lines #L66 - L69 were not covered by tests
Expand Down

0 comments on commit b6fb493

Please sign in to comment.