Skip to content

Commit 4ef3760

Browse files
committed
minor changes: uuidv4, python udf config file
1 parent 0ab7a8e commit 4ef3760

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/functions_for_text.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ Please note all keys and values in the returned map are in string type. You can
153153

154154
### uuid
155155

156-
`uuid()` or `uuid(x)` Generates a universally unique identifier (UUID) which is a 16-byte number used to identify records. In order to generate multiple UUID in one row, pass a parameter in each function call, such as `SELECT uuid(1) as a, uuid(2) as b` Otherwise if there is no parameter while calling multiple `uuid` functions in one SQL statement, the same UUID value will be returned.
156+
`uuid()` or `uuid(x)` Generates a universally unique identifier (UUIDv4) which is a 16-byte number used to identify records. In order to generate multiple UUID in one row, pass a parameter in each function call, such as `SELECT uuid(1) as a, uuid(2) as b` Otherwise if there is no parameter while calling multiple `uuid` functions in one SQL statement, the same UUID value will be returned.
157157

158158
### base64_encode
159159

docs/py-udf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ To install new Python libraries, you can either call the REST API of timeplusd i
239239
#### Install via `timeplusd python pip` {#install_pip}
240240
Starting from Timeplus Enterprise v2.8, you can use the `timeplusd python pip install` command-line tool to install Python libraries. For example, to install the `numpy` library, you can use the following command:
241241
```bash
242-
timeplusd python --config-file config.yaml -m pip install --user numpy
242+
timeplusd python --config-file ../conf/timeplusd.yaml -m pip install --user numpy
243243
```
244244

245245
For example, with the timeplusd docker image, you can use the following command:

0 commit comments

Comments
 (0)