mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
parent
a4740ca836
commit
6ce0097846
|
@ -198,7 +198,7 @@ CREATE TABLE IF NOT EXISTS %s (
|
||||||
func (s *MySqlStore) createTables(db *sql.DB, tableName string, postfix int) error {
|
func (s *MySqlStore) createTables(db *sql.DB, tableName string, postfix int) error {
|
||||||
var realTableName string
|
var realTableName string
|
||||||
if s.isSharding {
|
if s.isSharding {
|
||||||
realTableName = fmt.Sprintf("%s_%4d", tableName, postfix)
|
realTableName = fmt.Sprintf("%s_%04d", tableName, postfix)
|
||||||
} else {
|
} else {
|
||||||
realTableName = tableName
|
realTableName = tableName
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue