зеркало из https://github.com/github/vitess-gh.git
19 строки
456 B
Python
Executable File
19 строки
456 B
Python
Executable File
#!/usr/bin/env python
|
|
#
|
|
# Copyright 2013, Google Inc. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can
|
|
# be found in the LICENSE file.
|
|
|
|
"""Re-runs merge_sharding.py with a varbinary keyspace_id."""
|
|
|
|
from vtdb import keyrange_constants
|
|
|
|
import base_sharding
|
|
import merge_sharding
|
|
import utils
|
|
|
|
|
|
if __name__ == '__main__':
|
|
base_sharding.keyspace_id_type = keyrange_constants.KIT_BYTES
|
|
utils.main(merge_sharding)
|