Skip to content

Commit

Permalink
fixup! fixup! cfr: Use underscore table names and cluster name as the…
Browse files Browse the repository at this point in the history
… schema
  • Loading branch information
seut committed May 24, 2024
1 parent 65ec890 commit 73b821a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cratedb_toolkit/cfr/systable.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,9 @@ def export(self, target_folder: Path) -> Path:
with open(path_table_schema, "w") as fh_schema:
print(

Check warning on line 164 in cratedb_toolkit/cfr/systable.py

View check run for this annotation

Codecov / codecov/patch

cratedb_toolkit/cfr/systable.py#L163-L164

Added lines #L163 - L164 were not covered by tests
self.inspector.ddl(
tablename_in=tablename,
tablename_out=tablename_out,
out_schema=self.info.cluster_name
tablename_in=tablename, tablename_out=tablename_out, out_schema=self.info.cluster_name
),
file=fh_schema
file=fh_schema,
)

# Write data file.
Expand Down

0 comments on commit 73b821a

Please sign in to comment.