2021-12-16 10:01:35 +08:00
|
|
|
// Licensed to the LF AI & Data foundation under one
|
|
|
|
// or more contributor license agreements. See the NOTICE file
|
|
|
|
// distributed with this work for additional information
|
|
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
|
|
// to you under the Apache License, Version 2.0 (the
|
|
|
|
// "License"); you may not use this file except in compliance
|
2021-04-19 11:12:56 +08:00
|
|
|
// with the License. You may obtain a copy of the License at
|
|
|
|
//
|
2021-12-16 10:01:35 +08:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2021-04-19 11:12:56 +08:00
|
|
|
//
|
2021-12-16 10:01:35 +08:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2021-04-19 11:12:56 +08:00
|
|
|
|
2021-06-18 21:30:08 +08:00
|
|
|
package rootcoord
|
2021-01-19 14:44:03 +08:00
|
|
|
|
2023-04-06 19:14:32 +08:00
|
|
|
import "github.com/milvus-io/milvus/pkg/common"
|
2021-09-13 17:12:19 +08:00
|
|
|
|
2023-06-21 14:00:42 +08:00
|
|
|
// system field id:
|
2021-01-19 14:44:03 +08:00
|
|
|
// 0: unique row id
|
|
|
|
// 1: timestamp
|
|
|
|
// 100: first user field id
|
|
|
|
// 101: second user field id
|
|
|
|
// 102: ...
|
|
|
|
|
|
|
|
const (
|
2023-06-21 14:00:42 +08:00
|
|
|
// StartOfUserFieldID id of user defined field begin from here
|
2021-09-13 17:12:19 +08:00
|
|
|
StartOfUserFieldID = common.StartOfUserFieldID
|
2021-09-23 15:10:00 +08:00
|
|
|
|
|
|
|
// RowIDField id of row ID field
|
|
|
|
RowIDField = common.RowIDField
|
|
|
|
|
|
|
|
// TimeStampField id of timestamp field
|
|
|
|
TimeStampField = common.TimeStampField
|
|
|
|
|
|
|
|
// RowIDFieldName name of row ID field
|
|
|
|
RowIDFieldName = common.RowIDFieldName
|
|
|
|
|
2021-12-28 19:18:20 +08:00
|
|
|
// TimeStampFieldName name of the timestamp field
|
2021-09-13 17:12:19 +08:00
|
|
|
TimeStampFieldName = common.TimeStampFieldName
|
2023-05-18 09:33:24 +08:00
|
|
|
|
|
|
|
// MetaFieldName name of the dynamic schema field
|
|
|
|
MetaFieldName = common.MetaFieldName
|
2021-01-19 14:44:03 +08:00
|
|
|
)
|