File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
src/query/storages/stage/src Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ use databend_common_expression::FILE_ROW_NUMBER_COLUMN_ID;
3434use databend_common_meta_app:: principal:: FileFormatParams ;
3535use databend_common_meta_app:: principal:: StageInfo ;
3636use databend_common_meta_app:: schema:: TableInfo ;
37+ use databend_common_meta_app:: schema:: TableMeta ;
3738use databend_common_pipeline_core:: Pipeline ;
3839use databend_common_storage:: init_stage_operator;
3940use databend_common_storage:: StageFileInfo ;
@@ -60,6 +61,10 @@ impl StageTable {
6061 let table_info_placeholder = TableInfo {
6162 // `system.stage` is used to forbid the user to select * from text files.
6263 name : "stage" . to_string ( ) ,
64+ meta : TableMeta {
65+ engine : "STAGE" . to_string ( ) ,
66+ ..Default :: default ( )
67+ } ,
6368 ..Default :: default ( )
6469 }
6570 . set_schema ( table_info. schema ( ) ) ;
You can’t perform that action at this time.
0 commit comments