mirror of https://github.com/apache/druid.git
Delta snapshots are zero-indexed, so remove zeroMeansUndefined: true. (#17367)
This lets users filter by snapshotVersion: 0. Previously, zeroMeanUndefined was set to true, so it would silently default to the latest snapshot.
This commit is contained in:
parent
8c52be81d3
commit
0e6c388b7f
|
@ -1115,7 +1115,6 @@ export function getIoConfigFormFields(ingestionComboType: IngestionComboType): F
|
|||
label: 'Delta snapshot version',
|
||||
type: 'number',
|
||||
placeholder: '(latest)',
|
||||
zeroMeansUndefined: true,
|
||||
info: (
|
||||
<>
|
||||
The snapshot version to read from the Delta table. By default, the latest snapshot is
|
||||
|
|
|
@ -667,7 +667,6 @@ export const INPUT_SOURCE_FIELDS: Field<InputSource>[] = [
|
|||
label: 'Delta snapshot version',
|
||||
type: 'number',
|
||||
placeholder: '(latest)',
|
||||
zeroMeansUndefined: true,
|
||||
defined: typeIsKnown(KNOWN_TYPES, 'delta'),
|
||||
info: (
|
||||
<>
|
||||
|
|
Loading…
Reference in New Issue