File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
google-cloud-bigquery/src/main/java/com/google/cloud/bigquery Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 30
30
import org .apache .arrow .vector .util .JsonStringArrayList ;
31
31
import org .apache .arrow .vector .util .Text ;
32
32
33
+ /**
34
+ * An implementation of BigQueryResult.
35
+ *
36
+ * <p>This class and the ResultSet it returns is not thread-safe.
37
+ */
33
38
public class BigQueryResultImpl <T > implements BigQueryResult <T > {
34
39
35
40
private static final String NULL_CURSOR_MSG =
@@ -688,6 +693,11 @@ public Date getDate(int columnIndex) throws SQLException {
688
693
}
689
694
}
690
695
696
+ /**
697
+ * Returns whether the last column read had a value of SQL NULL. Note that you must first call
698
+ * one of the getter methods on a column to try to read its value and then call the method
699
+ * wasNull to see if the value read was SQL NULL. *
700
+ */
691
701
@ Override
692
702
public boolean wasNull () {
693
703
return wasNull ;
You can’t perform that action at this time.
0 commit comments