From 131c86c899ac356c44ac9e6b187b1b01cf2fbe67 Mon Sep 17 00:00:00 2001 From: Grace Cai Date: Fri, 2 Aug 2024 19:00:38 +0800 Subject: [PATCH] bit-functions-and-operators: fix PDF build issue (#18232) --- functions-and-operators/bit-functions-and-operators.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions-and-operators/bit-functions-and-operators.md b/functions-and-operators/bit-functions-and-operators.md index 7c16abf54de7..0b7c7e261adc 100644 --- a/functions-and-operators/bit-functions-and-operators.md +++ b/functions-and-operators/bit-functions-and-operators.md @@ -13,9 +13,9 @@ TiDB 支持使用 MySQL 8.0 中提供的所有[位函数和操作符](https://de | 函数和操作符名 | 功能描述 | | -------------- | ------------------------------------- | | [`BIT_COUNT()`](#bit_count) | 返回参数二进制表示中为 1 的个数 | -| [`&`](#按位与) | 按位与 | -| [`~`](#按位取反) | 按位取反 | -| [`\|`](#按位或) | 按位或 | +| [&](#按位与) | 按位与 | +| [~](#按位取反) | 按位取反 | +| [\|](#按位或) | 按位或 | | [`^`](#按位异或) | 按位异或 | | [`<<`](#左移) | 左移 | | [`>>`](#右移) | 右移 |