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: docs/layouts/shortcodes/generated/core_configuration.html
+4-4
Original file line number
Diff line number
Diff line change
@@ -396,25 +396,25 @@
396
396
<td><h5>incremental-between</h5></td>
397
397
<tdstyle="word-wrap: break-word;">(none)</td>
398
398
<td>String</td>
399
-
<td>Read incremental changes between start snapshot (exclusive) and end snapshot, for example, '5,10' means changes between snapshot 5 and snapshot 10.</td>
399
+
<td>Read incremental changes between start snapshot (exclusive) and end snapshot (inclusive), for example, '5,10' means changes between snapshot 5 and snapshot 10.</td>
400
400
</tr>
401
401
<tr>
402
402
<td><h5>incremental-between-scan-mode</h5></td>
403
403
<tdstyle="word-wrap: break-word;">auto</td>
404
404
<td><p>Enum</p></td>
405
-
<td>Scan kind when Read incremental changes between start snapshot (exclusive) and end snapshot. <br/><br/>Possible values:<ul><li>"auto": Scan changelog files for the table which produces changelog files. Otherwise, scan newly changed files.</li><li>"delta": Scan newly changed files between snapshots.</li><li>"changelog": Scan changelog files between snapshots.</li></ul></td>
405
+
<td>Scan kind when Read incremental changes between start snapshot (exclusive) and end snapshot (inclusive). <br/><br/>Possible values:<ul><li>"auto": Scan changelog files for the table which produces changelog files. Otherwise, scan newly changed files.</li><li>"delta": Scan newly changed files between snapshots.</li><li>"changelog": Scan changelog files between snapshots.</li></ul></td>
406
406
</tr>
407
407
<tr>
408
408
<td><h5>incremental-between-timestamp</h5></td>
409
409
<tdstyle="word-wrap: break-word;">(none)</td>
410
410
<td>String</td>
411
-
<td>Read incremental changes between start timestamp (exclusive) and end timestamp, for example, 't1,t2' means changes between timestamp t1 and timestamp t2.</td>
411
+
<td>Read incremental changes between start timestamp (exclusive) and end timestamp (inclusive), for example, 't1,t2' means changes between timestamp t1 and timestamp t2.</td>
412
412
</tr>
413
413
<tr>
414
414
<td><h5>incremental-to-auto-tag</h5></td>
415
415
<tdstyle="word-wrap: break-word;">(none)</td>
416
416
<td>String</td>
417
-
<td>Used to specify the auto-created tag to reading incremental changes.</td>
417
+
<td>Used to specify the end tag (inclusive), and Paimon will find an earlier tag and return changes between them. If the tag doesn't exist or the earlier tag doesn't exist, return empty. </td>
Copy file name to clipboardexpand all lines: paimon-docs/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ The `@ConfigGroups` annotation can be used to generate multiple files from a sin
28
28
29
29
To integrate an `*Options` class from another package, add another module-package argument pair to `ConfigOptionsDocGenerator#LOCATIONS`.
30
30
31
-
The files can be generated by running `mvn clean install -DskipTests` and `mvn package -Pgenerate-docs -pl paimon-docs -nsu -DskipTests`, and can be integrated into the documentation using `{{ include generated/<file-name> >}}`.
31
+
The files can be generated by running `mvn package -Pgenerate-docs -pl paimon-docs -nsu -DskipTests -am`, and can be integrated into the documentation using `{{ include generated/<file-name> >}}`.
32
32
33
33
**NOTE:** You need to make sure that the changed jar has been installed in the local maven repository.
Copy file name to clipboardexpand all lines: paimon-spark/paimon-spark-common/src/main/scala/org/apache/paimon/spark/catalyst/plans/logical/PaimonTableValuedFunctions.scala
0 commit comments