Skip to content

Commit 6e3053c

Browse files
viiryaclaude
andcommitted
[SPARK] Update charvarchar.sql analyzer golden file for fully qualified identifiers
After the CREATE TABLE LIKE V2 change, the target and source identifiers in CreateTableLikeCommand are now fully qualified (spark_catalog.default.*) because ResolvedV1Identifier explicitly adds the catalog component via ident.asTableIdentifier.copy(catalog = Some(catalog.name)), and ResolvedV1TableIdentifier returns t.catalogTable.identifier which also includes the catalog. Update the analyzer golden file accordingly. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 5c7a0eb commit 6e3053c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sql/core/src/test/resources/sql-tests/analyzer-results/charvarchar.sql.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ DescribeColumnCommand `spark_catalog`.`default`.`char_tbl2`, [spark_catalog, def
5555
-- !query
5656
create table char_tbl3 like char_tbl
5757
-- !query analysis
58-
CreateTableLikeCommand `char_tbl3`, `char_tbl`, Storage(), false
58+
CreateTableLikeCommand `spark_catalog`.`default`.`char_tbl3`, `spark_catalog`.`default`.`char_tbl`, Storage(), false
5959

6060

6161
-- !query

0 commit comments

Comments
 (0)