Skip to content

Commit

Permalink
Fix #19160: Add Depth Support Part-1 (#19275)
Browse files Browse the repository at this point in the history
  • Loading branch information
ulixius9 authored Jan 8, 2025
1 parent 2179b43 commit e32ad88
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@
},
"default": null
},
"depth":{
"title": "Depth",
"description": "Depth of the data path in the container",
"type": "integer",
"default": 0
},
"separator": {
"title": "Separator",
"description": "For delimited files such as CSV, what is the separator being used?",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2024 Collate.
* Copyright 2025 Collate.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
Expand All @@ -10,9 +10,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/


/**
/**
* Definition of the properties contained by an object store container template config file
*/
export interface ContainerMetadataConfig {
Expand All @@ -31,6 +29,10 @@ export interface MetadataEntry {
* The path where the data resides in the container, excluding the bucket name
*/
dataPath: string;
/**
* Depth of the data path in the container
*/
depth?: number;
/**
* Flag indicating whether the container's data is partitioned
*/
Expand Down

0 comments on commit e32ad88

Please sign in to comment.