ref on functions

This commit is contained in:
drethereum 2023-05-22 17:16:19 -06:00
parent 1602da7fdb
commit f1b129935b
2 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@
RUNTIME_VERSION = '3.8'
HANDLER = 'hex_to_int'
sql: |
{{ python_hex_to_int() | indent(4) }}
{{ reference_models.python_hex_to_int() | indent(4) }}
- name: utils.udf_hex_to_int
signature:
- [encoding, STRING]
@ -28,7 +28,7 @@
RUNTIME_VERSION = '3.8'
HANDLER = 'hex_to_int'
sql: |
{{ python_udf_hex_to_int_with_encoding() | indent(4) }}
{{ reference_models.python_udf_hex_to_int_with_encoding() | indent(4) }}
- name: utils.udf_hex_to_string
signature:

View File

@ -66,7 +66,7 @@
{% set func_type = config ["func_type"] %}
{% if not drop_ -%}
{{ create_sql_function(
{{ reference_models.create_sql_function(
name_ = name_,
signature = signature,
return_type = return_type,