Skip to content

Commit

Permalink
user-guide(logs): add fulltext search to quick-start
Browse files Browse the repository at this point in the history
Signed-off-by: Zhenchi <[email protected]>
  • Loading branch information
zhongzc committed Jul 15, 2024
1 parent 967c698 commit 6460d4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/nightly/en/user-guide/logs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ psql -h 127.0.0.1 -p 4003 -d public
You can query the log table using SQL:

```sql
SELECT * FROM public.logs;
SELECT * FROM public.logs WHERE MATCHES(log, 'sendTextDataToCluster');
```

The query result is as follows:
Expand Down
2 changes: 1 addition & 1 deletion docs/nightly/zh/user-guide/logs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ psql -h 127.0.0.1 -p 4003 -d public
可通过 SQL 查询日志表:

```sql
SELECT * FROM public.logs;
SELECT * FROM public.logs WHERE MATCHES(log, 'sendTextDataToCluster');
```

查询结果如下:
Expand Down

0 comments on commit 6460d4b

Please sign in to comment.