MCPcopy Create free account
hub / github.com/apache/datafusion / group_by_ambiguous_name

Function group_by_ambiguous_name

datafusion/sql/tests/sql_integration.rs:4150–4158  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

4148
4149#[test]
4150fn group_by_ambiguous_name() {
4151 let sql = "select max(id) from person a join person b using (id) group by age";
4152 let err = logical_plan(sql).unwrap_err().strip_backtrace();
4153
4154 assert_snapshot!(
4155 err,
4156 @"Schema error: Ambiguous reference to unqualified field age"
4157 );
4158}
4159
4160#[test]
4161fn test_zero_offset_with_limit() {

Callers

nothing calls this directly

Calls 3

strip_backtraceMethod · 0.80
unwrap_errMethod · 0.80
logical_planFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…