We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cedb5a7 commit f467600Copy full SHA for f467600
vector/src/main/java/org/apache/arrow/vector/complex/reader/ExtensionReader.java
@@ -43,5 +43,14 @@ public interface ExtensionReader extends BaseReader {
43
*/
44
boolean isSet();
45
46
+ /**
47
+ * Gets the extension type writer factory associated with this reader.
48
+ *
49
+ * <p>The writer factory is used to create appropriate writers when copying extension type values
50
+ * to another vector. This allows the copy operation to preserve the extension type semantics.
51
52
+ * @return the extension type writer factory
53
+ * @throws IllegalStateException if the reader doesn't support extension types
54
+ */
55
ExtensionTypeWriterFactory getExtensionTypeWriterFactory();
56
}
0 commit comments