We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 301152b commit b07fd22Copy full SHA for b07fd22
plugins/destination/plugin_testing_write_append.go
@@ -18,7 +18,7 @@ func (s *PluginTestSuite) destinationPluginTestWriteAppend(ctx context.Context,
18
if err := p.Init(ctx, logger, spec); err != nil {
19
return fmt.Errorf("failed to init plugin: %w", err)
20
}
21
- tableName := spec.Name
+ tableName := fmt.Sprintf("cq_%s_%d", spec.Name, time.Now().Unix())
22
table := testdata.TestTable(tableName).ToArrowSchema()
23
syncTime := time.Now().UTC().Round(1 * time.Second)
24
tables := []*arrow.Schema{
0 commit comments