Skip to content

Commit a237b4d

Browse files
authored
docs: Update index.md (#13306)
Update index.md fixed
1 parent 59d0f5b commit a237b4d

File tree

1 file changed

+2
-2
lines changed
  • docs/doc/14-sql-commands/00-ddl/50-udf

1 file changed

+2
-2
lines changed

docs/doc/14-sql-commands/00-ddl/50-udf/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def gcd(x: int, y: int) -> int:
7575

7676
if __name__ == '__main__':
7777
# create a UDF server listening at '0.0.0.0:8815'
78-
server = UdfServer("0.0.0.0:8815")
78+
server = UDFServer("0.0.0.0:8815")
7979
# add defined functions
8080
server.add_function(gcd)
8181
# start the UDF server
@@ -122,4 +122,4 @@ python3 udf_server.py
122122

123123
```sql
124124
CREATE FUNCTION gcd (INT, INT) RETURNS INT LANGUAGE python HANDLER = 'gcd' ADDRESS = 'http://0.0.0.0:8815'
125-
```
125+
```

0 commit comments

Comments
 (0)