MCPcopy Create free account
hub / github.com/cmu-db/benchbase / clobToString

Method clobToString

src/main/java/com/oltpbenchmark/util/SQLUtil.java:112–119  ·  view source on GitHub ↗
(Object obj)

Source from the content-addressed store, hash-verified

110 }
111
112 public static String clobToString(Object obj) {
113 try {
114 Clob clob = (Clob) obj;
115 return clob.getSubString(1, (int) clob.length());
116 } catch (SQLException e) {
117 throw new RuntimeException(e);
118 }
119 }
120
121 public static String getString(Object obj) {
122 if (obj == null) {

Callers 2

runMethod · 0.95
runMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected