@@ -659,8 +659,8 @@ export interface TColumnTableDescription {
659
659
}
660
660
661
661
interface TColumnTableSchema {
662
- Columns : TOlapColumnDescription [ ] ;
663
- KeyColumnNames : string [ ] ;
662
+ Columns ? : TOlapColumnDescription [ ] ;
663
+ KeyColumnNames ? : string [ ] ;
664
664
Engine ?: EColumnTableEngine ;
665
665
NextColumnId ?: number ;
666
666
@@ -724,7 +724,7 @@ interface TStorageTier {
724
724
Eviction ?: TTtl ;
725
725
}
726
726
interface TStorageTiering {
727
- Tiers : TStorageTier [ ] ;
727
+ Tiers ? : TStorageTier [ ] ;
728
728
}
729
729
730
730
enum EUnit {
@@ -740,10 +740,10 @@ interface TColumnTableSharding {
740
740
Version ?: string ;
741
741
742
742
/** uint64 */
743
- ColumnShards : string [ ] ;
743
+ ColumnShards ? : string [ ] ;
744
744
745
745
/** uint64 */
746
- AdditionalColumnShards : string [ ] ;
746
+ AdditionalColumnShards ? : string [ ] ;
747
747
748
748
UniquePrimaryKey ?: boolean ;
749
749
@@ -753,7 +753,7 @@ interface TColumnTableSharding {
753
753
754
754
interface THashSharding {
755
755
Function ?: EHashFunction ;
756
- Columns : string [ ] ;
756
+ Columns ? : string [ ] ;
757
757
UniqueShardKey ?: boolean ;
758
758
ActiveShardsCount ?: number ;
759
759
}
@@ -776,9 +776,9 @@ export interface TColumnStoreDescription {
776
776
ColumnShardCount ?: number ;
777
777
778
778
/** uint64 */
779
- ColumnShards : string [ ] ;
779
+ ColumnShards ? : string [ ] ;
780
780
781
- SchemaPresets : TColumnTableSchemaPreset [ ] ;
781
+ SchemaPresets ? : TColumnTableSchemaPreset [ ] ;
782
782
StorageConfig ?: TColumnStorageConfig ;
783
783
784
784
NextSchemaPresetId ?: number ;
0 commit comments