Skip to content

Commit

Permalink
Update primary-null.test
Browse files Browse the repository at this point in the history
  • Loading branch information
hnwyllmm authored Oct 24, 2024
1 parent 19d8fc6 commit 9abdb8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/case/test/primary-null.test
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ SELECT count(birthday) FROM null_table;
SELECT avg(num) FROM null_table;

-- echo 6. aggregation with null columns
CREATE TABLE null_table3(id int, num int null);
CREATE TABLE null_table3(id int not null, num int null);
INSERT INTO null_table3 VALUES (1, null);
INSERT INTO null_table3 VALUES (2, null);
SELECT count(num) FROM null_table3;
Expand Down

0 comments on commit 9abdb8f

Please sign in to comment.