feat: add range configuration to job settings for enhanced data processing control
This commit is contained in:
@@ -50,6 +50,12 @@ type Job struct {
|
||||
PreSQL []string `yaml:"pre_sql"`
|
||||
PostSQL []string `yaml:"post_sql"`
|
||||
JobConfig `yaml:",inline"`
|
||||
Range struct {
|
||||
Min int64 `yaml:"min"`
|
||||
Max int64 `yaml:"max"`
|
||||
IsMinInclusive bool `yaml:"is_min_inclusive"`
|
||||
IsMaxInclusive bool `yaml:"is_max_inclusive"`
|
||||
}
|
||||
}
|
||||
|
||||
type MigrationConfig struct {
|
||||
|
||||
Reference in New Issue
Block a user