Skip to content

Commit 8a8253e

Browse files
authored
feat: deprecate Timestamp and TimestampTZ visit functions (#273)
1 parent ebaa663 commit 8a8253e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

core/src/main/java/io/substrait/type/TypeVisitor.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@ public interface TypeVisitor<R, E extends Throwable> {
2323

2424
R visit(Type.Time type) throws E;
2525

26+
@Deprecated
2627
R visit(Type.TimestampTZ type) throws E;
2728

29+
@Deprecated
2830
R visit(Type.Timestamp type) throws E;
2931

3032
R visit(Type.PrecisionTimestamp type) throws E;

0 commit comments

Comments
 (0)