зеркало из https://github.com/github/vitess-gh.git
15 строки
344 B
Python
15 строки
344 B
Python
|
#!/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 resharding.py with RBR on."""
|
||
|
|
||
|
import vertical_split
|
||
|
import utils
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
vertical_split.use_rbr = True
|
||
|
utils.main(vertical_split)
|