( bucketName: string, tableFolderRoot: string, tableFolderSubpath: string, )
| 375 | * @returns Storage URI used when creating an Iceberg table. |
| 376 | */ |
| 377 | export function getStorageUriForIcebergTable( |
| 378 | bucketName: string, |
| 379 | tableFolderRoot: string, |
| 380 | tableFolderSubpath: string, |
| 381 | ): string { |
| 382 | return `gs://${bucketName}/${tableFolderRoot}/${tableFolderSubpath}`; |
| 383 | } |
| 384 | |
| 385 | /** |
| 386 | * Returns the bucketName which will be used to construct storageUri for an |
no outgoing calls
no test coverage detected