Skip to content

Commit 9500936

Browse files
committed
[hotfix] Correct AVRO TIMESTAMP_LOCAL_ZONE mapping
1 parent 7d0346d commit 9500936

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/content/concepts/spec/fileformat.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ The following table lists the type mapping from Paimon type to Avro type.
225225
<tr>
226226
<td><code>TIMESTAMP_LOCAL_ZONE</code></td>
227227
<td>P <= 3: long, P <= 6: long, P > 6: unsupported</td>
228-
<td>P <= 3: timestampMillis, P <= 6: timestampMicros, P > 6: unsupported</td>
228+
<td>P <= 3: localTimestampMillis, P <= 6: localTimestampMicros, P > 6: unsupported</td>
229229
</tr>
230230
<tr>
231231
<td><code>ARRAY</code></td>
@@ -252,6 +252,8 @@ The following table lists the type mapping from Paimon type to Avro type.
252252
</tbody>
253253
</table>
254254

255+
Note:
256+
255257
In addition to the types listed above, for nullable types. Paimon maps nullable types to Avro `union(something, null)`,
256258
where `something` is the Avro type converted from Paimon type.
257259

0 commit comments

Comments
 (0)