We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1d0511 commit 301297eCopy full SHA for 301297e
macros/recce_duckdb.sql
@@ -0,0 +1,4 @@
1
+{%- macro duckdb__is_numeric_dtype(dtype) -%}
2
+ {% set is_numeric = "int" in dtype or "bigint" in dtype or "float" in dtype or "double" in dtype or "decimal" in dtype.lower() %}
3
+ {% do return(is_numeric) %}
4
+{%- endmacro -%}
0 commit comments