From 2882c841cd2784e5c2ee97b0558c99fdf94a17c3 Mon Sep 17 00:00:00 2001 From: Keith Chan <12404772+keithhc2@users.noreply.github.com> Date: Thu, 11 Nov 2021 14:52:40 -0800 Subject: [PATCH] Escaped quotes Signed-off by: Keith Chan --- _search-plugins/ppl/commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_search-plugins/ppl/commands.md b/_search-plugins/ppl/commands.md index fa472d06..6ab816ab 100644 --- a/_search-plugins/ppl/commands.md +++ b/_search-plugins/ppl/commands.md @@ -498,7 +498,7 @@ Field | Description | Required To get all documents from the `accounts` index where `account_number` is 1 or gender is `F`: ```sql -search source=accounts | where account_number=1 or gender="F" | fields account_number, gender; +search source=accounts | where account_number=1 or gender=\"F\" | fields account_number, gender; ``` | account_number | gender