зеркало из https://github.com/github/vitess-gh.git
17 строки
470 B
Python
Executable File
17 строки
470 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.
|
|
|
|
from vtdb import keyrange_constants
|
|
|
|
import initial_sharding
|
|
import utils
|
|
|
|
# this test is just re-running an entire initial_sharding.py with a
|
|
# varbinary keyspace_id
|
|
if __name__ == '__main__':
|
|
initial_sharding.keyspace_id_type = keyrange_constants.KIT_BYTES
|
|
utils.main(initial_sharding)
|