Skip to content
This repository was archived by the owner on Dec 14, 2022. It is now read-only.

fix not match primitive schema #492

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public class PulsarPrimitiveSchema<T>
pulsarPrimitives.put(Float.TYPE, FloatSchema.of());
pulsarPrimitives.put(Double.class, DoubleSchema.of());
pulsarPrimitives.put(Double.TYPE, DoubleSchema.of());
pulsarPrimitives.put(Byte[].class, BytesSchema.of());
pulsarPrimitives.put(byte[].class, BytesSchema.of());
pulsarPrimitives.put(Date.class, DateSchema.of());
pulsarPrimitives.put(Time.class, TimeSchema.of());
pulsarPrimitives.put(Timestamp.class, TimestampSchema.of());
Expand Down