Vijay Kiran
Vijay Kiran
Looks like metadata queries on snowflake are very slow if we use `lower` on columns and table names. See: https://stackoverflow.com/a/65078113/440589 and https://community.snowflake.com/s/article/metadata-operations-throttling#:%7E:text=What%20are%20the%20Metadata%20Operations,warehouse%20or%20customer%20data%20storage Review the places in Snowflake data source and...
Implies this works in Soda Core as well as in Soda Cloud Depends on #1243
Ensure we have test coverage for most of the common data types. * integer * decimals * varchar * date * time * timestamp * boolean
Example SodaCL ```yaml for each country in CUSTOMER [daily]: - avg(points) > 20000 - min(sales) between 0 and 200 ``` or multi-column group by ```yaml for each (country, zip, category)...