You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docker/test/fuzzer/run-fuzzer.sh
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -379,8 +379,11 @@ EOF
379
379
elif [ "$server_died"== 1 ]
380
380
then
381
381
# The server has died.
382
-
if!rg --text -o 'Received signal.*|Logical error.*|Assertion.*failed|Failed assertion.*|.*runtime error: .*|.*is located.*|(SUMMARY|ERROR): [a-zA-Z]+Sanitizer:.*|.*_LIBCPP_ASSERT.*|.*Child process was terminated by signal 9.*' server.log > description.txt
382
+
if rg --text -o 'Received signal.*|Logical error.*|Assertion.*failed|Failed assertion.*|.*runtime error: .*|.*is located.*|(SUMMARY|ERROR): [a-zA-Z]+Sanitizer:.*|.*_LIBCPP_ASSERT.*|.*Child process was terminated by signal 9.*' server.log > description.txt
383
383
then
384
+
# Save the stack trace of the server to the description file and preserve in raw text output.
Copy file name to clipboardExpand all lines: docs/en/sql-reference/functions/geo/s2.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ description: 'Documentation for functions for working with S2 indexes'
9
9
10
10
## S2Index {#s2index}
11
11
12
-
[S2](https://s2geometry.io/) is a geographical indexing system where all geographical data is represented on a three-dimensional sphere (similar to a globe).
12
+
[S2](https://s2geometry.io/) is a geographical indexing system where all geographical data is represented on a sphere (similar to a globe).
13
13
14
14
In the S2 library points are represented as the S2 Index - a specific number which encodes internally a point on the surface of a unit sphere, unlike traditional (latitude, longitude) pairs. To get the S2 point index for a given point specified in the format (latitude, longitude) use the [geoToS2](#geotos2) function. Also, you can use the [s2ToGeo](#s2togeo) function for getting geographical coordinates corresponding to the specified S2 point index.
description: 'Documentation for ALTER TABLE ... MODIFY COMMENT'
3
-
sidebar_label: 'COMMENT'
2
+
description: 'Documentation for ALTER TABLE ... MODIFY COMMENT which allow
3
+
adding, modifying, or removing table comments'
4
+
sidebar_label: 'ALTER TABLE ... MODIFY COMMENT'
4
5
sidebar_position: 51
5
6
slug: /sql-reference/statements/alter/comment
6
7
title: 'ALTER TABLE ... MODIFY COMMENT'
8
+
keywords: ['ALTER TABLE', 'MODIFY COMMENT']
7
9
---
8
10
9
11
# ALTER TABLE ... MODIFY COMMENT
10
12
11
-
Adds, modifies, or removes comment to the table, regardless if it was set before or not. Comment change is reflected in both [system.tables](../../../operations/system-tables/tables.md) and `SHOW CREATE TABLE` query.
13
+
Adds, modifies, or removes a table comment, regardless of whether it was set
14
+
before or not. The comment change is reflected in both [`system.tables`](../../../operations/system-tables/tables.md)
0 commit comments