fix: file文件缺失

This commit is contained in:
meilin.huang
2025-08-08 12:55:10 +08:00
parent 614a144f60
commit 82fd97e06a
14 changed files with 122 additions and 1534 deletions

View File

@@ -139,6 +139,14 @@ type (
TableName *TableName // 表名
Alias string // 别名
}
// SubqueryTableItem 表示子查询表项,如 (SELECT * FROM table1) AS alias
SubqueryTableItem struct {
TableSourceItem
SubQuery ISelectStmt
Alias string
}
)
func (*TableSource) isTableSource() {}