fix: keep_time_offset format of show create database

This commit is contained in:
kailixu 2025-02-10 15:36:54 +08:00
parent 27963d0978
commit 12c9d460c4
2 changed files with 5 additions and 5 deletions

View File

@ -1910,7 +1910,7 @@ static SNode* setDatabaseOptionImpl(SAstCreateContext* pCxt, SNode* pOptions, ED
pDbOptions->cacheLastSize = taosStr2Int32(((SToken*)pVal)->z, NULL, 10);
break;
case DB_OPTION_COMP:
pDbOptions->compressionLevel = taosStr2Int8(((SToken*)pVal)->z, NULL, 10);tms
pDbOptions->compressionLevel = taosStr2Int8(((SToken*)pVal)->z, NULL, 10);
break;
case DB_OPTION_DAYS: {
SToken* pToken = pVal;

View File

@ -148,10 +148,10 @@ class TDTestCase:
def run(self):
# self.alter_buffer()
# self.alter_pages()
# self.alter_encrypt_alrogithm()
# self.alter_same_options()
self.alter_buffer()
self.alter_pages()
self.alter_encrypt_alrogithm()
self.alter_same_options()
self.alter_keep_time_offset()
def stop(self):