作者 yangfu

Merge branch 'test'

... ... @@ -100,7 +100,7 @@ spec:
- name: SERVICE_ENV
value: "test"
- name: METADATA_BASTION_HOST
value: "http://character-library-metadata-bastion-test.fjmaimaimai.com"
value: "https://character-library-metadata-bastion-test.fjmaimaimai.com"
- name: BYTE_CORE_HOST
value: "http://47.97.5.102:8303"
- name: STARROCKS_HOST
... ...
... ... @@ -73,6 +73,7 @@ func (tableService *TableService) FieldOptionalValues(ctx *domain.Context, cmd *
if c.Field != nil && c.Field.SQLName == "" {
if v, ok := table.MatchField(c.Field); ok {
cmd.Where.Conditions[i].Field.SQLName = v.SQLName
cmd.Where.Conditions[i].Field.SQLType = v.SQLType
}
}
}
... ...
... ... @@ -36,6 +36,7 @@ func (tableService *TableService) TablePreview(ctx *domain.Context, cmd *command
if c.Field != nil && c.Field.SQLName == "" {
if v, ok := table.MatchField(c.Field); ok {
cmd.Where.Conditions[i].Field.SQLName = v.SQLName
cmd.Where.Conditions[i].Field.SQLType = v.SQLType
}
}
}
... ...