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

Function parse_ident_normalization_5

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

Source from the content-addressed store, hash-verified

283
284#[test]
285fn parse_ident_normalization_5() {
286 let sql = "SELECT AGE FROM PERSON";
287 let parser_option = ident_normalization_parser_options_no_ident_normalization();
288 let plan = logical_plan_with_options(sql, parser_option)
289 .unwrap_err()
290 .strip_backtrace();
291 assert_snapshot!(
292 plan,
293 @"Error during planning: No table named: PERSON found"
294 );
295}
296
297#[test]
298fn parse_ident_normalization_6() {

Callers

nothing calls this directly

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…