feat: update physical table's schema on creating logical table (#3570)

* feat: update physical table's schema on creating logical table

Signed-off-by: Ruihang Xia <waynestxia@gmail.com>

* remove debug code

Signed-off-by: Ruihang Xia <waynestxia@gmail.com>

* update sqlness cases

Signed-off-by: Ruihang Xia <waynestxia@gmail.com>

* tweak ut const

Signed-off-by: Ruihang Xia <waynestxia@gmail.com>

* update sqlness cases

Signed-off-by: Ruihang Xia <waynestxia@gmail.com>

* invalid physical table cache

Signed-off-by: Ruihang Xia <waynestxia@gmail.com>

---------

Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
This commit is contained in:
Ruihang Xia
2024-03-25 11:19:30 +08:00
committed by GitHub
parent 2ad0b24efa
commit 992c7ec71b
9 changed files with 179 additions and 22 deletions

View File

@@ -199,6 +199,8 @@ impl Env {
};
let log_file_name = self.data_home.join(log_file_name).display().to_string();
println!("{subcommand} log file at {log_file_name}");
let log_file = OpenOptions::new()
.create(true)
.write(true)