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 59d0f5b commit a237b4dCopy full SHA for a237b4d
docs/doc/14-sql-commands/00-ddl/50-udf/index.md
@@ -75,7 +75,7 @@ def gcd(x: int, y: int) -> int:
75
76
if __name__ == '__main__':
77
# create a UDF server listening at '0.0.0.0:8815'
78
- server = UdfServer("0.0.0.0:8815")
+ server = UDFServer("0.0.0.0:8815")
79
# add defined functions
80
server.add_function(gcd)
81
# start the UDF server
@@ -122,4 +122,4 @@ python3 udf_server.py
122
123
```sql
124
CREATE FUNCTION gcd (INT, INT) RETURNS INT LANGUAGE python HANDLER = 'gcd' ADDRESS = 'http://0.0.0.0:8815';
125
-```
+```
0 commit comments