reydb 1.1.34__py3-none-any.whl → 1.1.35__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
reydb/rconfig.py
CHANGED
@@ -115,7 +115,7 @@ class DatabaseConfig(object):
|
|
115
115
|
'name': 'count',
|
116
116
|
'select': (
|
117
117
|
'SELECT COUNT(1)\n'
|
118
|
-
f'FROM `{self.db_names['base']}`.`{self.db_names['base.
|
118
|
+
f'FROM `{self.db_names['base']}`.`{self.db_names['base.config']}`'
|
119
119
|
),
|
120
120
|
'comment': 'Config count.'
|
121
121
|
},
|
@@ -123,7 +123,7 @@ class DatabaseConfig(object):
|
|
123
123
|
'name': 'last_create_time',
|
124
124
|
'select': (
|
125
125
|
'SELECT MAX(`create_time`)\n'
|
126
|
-
f'FROM `{self.db_names['base']}`.`{self.db_names['base.
|
126
|
+
f'FROM `{self.db_names['base']}`.`{self.db_names['base.config']}`'
|
127
127
|
),
|
128
128
|
'comment': 'Config last record create time.'
|
129
129
|
},
|
@@ -131,7 +131,7 @@ class DatabaseConfig(object):
|
|
131
131
|
'name': 'last_update_time',
|
132
132
|
'select': (
|
133
133
|
'SELECT MAX(`update_time`)\n'
|
134
|
-
f'FROM `{self.db_names['base']}`.`{self.db_names['base.
|
134
|
+
f'FROM `{self.db_names['base']}`.`{self.db_names['base.config']}`'
|
135
135
|
),
|
136
136
|
'comment': 'Config last record update time.'
|
137
137
|
}
|
@@ -142,7 +142,7 @@ class DatabaseConfig(object):
|
|
142
142
|
]
|
143
143
|
|
144
144
|
# Build.
|
145
|
-
self.database.build.build(databases, tables, views_stats)
|
145
|
+
self.database.build.build(databases, tables, views_stats=views_stats)
|
146
146
|
|
147
147
|
|
148
148
|
def get(self, key: str, default: T | None = None) -> Any | T:
|
@@ -2,7 +2,7 @@ reydb/__init__.py,sha256=SqjJEBMiUMnKkNfmOvw_jprZcj9Edi0jyBKt67xeYUE,544
|
|
2
2
|
reydb/rall.py,sha256=UWnbtl4oG4YqXyqTMN_5uqE-QqD5nb_-dvarotlTUeU,388
|
3
3
|
reydb/rbase.py,sha256=X8bDBmKyIiLXGvOVnTh5nD0ltkhOPWU6g4BebifOZYY,312
|
4
4
|
reydb/rbuild.py,sha256=s4lLVQONfL5a9B6mw5D7bfbPyJoYNIqBxlas9rCM1Y8,32458
|
5
|
-
reydb/rconfig.py,sha256=
|
5
|
+
reydb/rconfig.py,sha256=d8xvpkoLbyVDVUNGPb0_TlrqxMdJsbjEXluXj7xWbN8,8801
|
6
6
|
reydb/rconn.py,sha256=kdw2xQb0JqSUXM-BD7XfJ-ZqaWHxYkeT8psRhOK43mA,6211
|
7
7
|
reydb/rdb.py,sha256=OQ3ztC4G53usAbocqGwTqo1ry1AIGjoWTN7pn8Pn3Uk,62184
|
8
8
|
reydb/rerror.py,sha256=xHLvRxu8KBvUdfVS7mD906jx9XTQPGwEl7psBLGEZ5w,9966
|
@@ -10,7 +10,7 @@ reydb/rexec.py,sha256=dGdRkG1XR0Z66T0r4nPCSdQzSRWc_Q3t6TPSSrDTIxY,9042
|
|
10
10
|
reydb/rfile.py,sha256=7g6hPBz33p-mkGFc6LEmL2hpFes-LM-AWQ0SxgJe2BI,15254
|
11
11
|
reydb/rinfo.py,sha256=KXTkcpTGAD3p9RVKKcnmc_FjJtiKRPk-K5ZepPOnphQ,15253
|
12
12
|
reydb/rparam.py,sha256=3BGDBD8QshOf2J70ZJ6LJ9PiH-1ZU3ruZwoE0bN6OOw,7017
|
13
|
-
reydb-1.1.
|
14
|
-
reydb-1.1.
|
15
|
-
reydb-1.1.
|
16
|
-
reydb-1.1.
|
13
|
+
reydb-1.1.35.dist-info/METADATA,sha256=gXTzXVZRTCIRkoKawXAeaEpsF9f9QUaUgQ6Q3mUpQUs,1550
|
14
|
+
reydb-1.1.35.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
15
|
+
reydb-1.1.35.dist-info/licenses/LICENSE,sha256=UYLPqp7BvPiH8yEZduJqmmyEl6hlM3lKrFIefiD4rvk,1059
|
16
|
+
reydb-1.1.35.dist-info/RECORD,,
|
File without changes
|
File without changes
|