Skip to main content

rewrite_describe_extended

Function rewrite_describe_extended 

Source
pub fn rewrite_describe_extended(sql: &str) -> SqlResult<String>
Expand description

Rewrites DESCRIBE TABLE EXTENDED <table> to standard DESCRIBE TABLE <table>.

DataFusion doesn’t support the EXTENDED keyword; we strip it and let the basic DESCRIBE pass through. Extended metadata (partition info, etc.) is a follow-up.