Skip to content

Commit b9c54be

Browse files
committed
[doc]Without switching the query mode of FlinkSQL, an exception will be thrown when deleting data from the fluss primary key table
1 parent 9355db4 commit b9c54be

File tree

1 file changed

+8
-6
lines changed
  • website/docs/table-design/table-types/pk-table

1 file changed

+8
-6
lines changed

website/docs/table-design/table-types/pk-table/index.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -153,12 +153,14 @@ SELECT * FROM T;
153153

154154
Generate the following change data:
155155

156-
```text
157-
+I(1, 2.0, 'apple')
158-
-U(1, 2.0, 'apple')
159-
+U(1, 4.0, 'banana')
160-
-D(1, 4.0, 'banana')
161-
```
156+
157+
158+
| op | k | v1 | v2 |
159+
| ---- | ---- | ---- | ------ |
160+
| +I | 1 | 2.0 | apple |
161+
| -U | 1 | 2.0 | apple |
162+
| +U | 1 | 4.0 | banana |
163+
| -D | 1 | 4.0 | banana |
162164

163165
## Data Queries
164166

0 commit comments

Comments
 (0)