|
@@ -433,7 +433,7 @@ const (
|
|
|
LocalSerial
|
|
LocalSerial
|
|
|
)
|
|
)
|
|
|
|
|
|
|
|
-var consinstencyNames = []string{
|
|
|
|
|
|
|
+var ConsistencyNames = []string{
|
|
|
0: "default",
|
|
0: "default",
|
|
|
Any: "any",
|
|
Any: "any",
|
|
|
One: "one",
|
|
One: "one",
|
|
@@ -448,7 +448,7 @@ var consinstencyNames = []string{
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (c Consistency) String() string {
|
|
func (c Consistency) String() string {
|
|
|
- return consinstencyNames[c]
|
|
|
|
|
|
|
+ return ConsistencyNames[c]
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
type ColumnInfo struct {
|
|
type ColumnInfo struct {
|