MCPcopy Create free account
hub / github.com/apache/calcite / queryable

Method queryable

core/src/main/java/org/apache/calcite/schema/Schemas.java:224–227  ·  view source on GitHub ↗

Returns a Queryable, given a fully-qualified table name.

(DataContext root, Class<E> clazz,
      String... names)

Source from the content-addressed store, hash-verified

222
223 /** Returns a {@link Queryable}, given a fully-qualified table name. */
224 public static <E> Queryable<E> queryable(DataContext root, Class<E> clazz,
225 String... names) {
226 return queryable(root, clazz, Arrays.asList(names));
227 }
228
229 /** Returns a {@link Queryable}, given a fully-qualified table name as an
230 * iterable. */

Callers 2

testTableWhereMethod · 0.95
createQueryableMethod · 0.95

Calls 10

subSchemasMethod · 0.95
asQueryableMethod · 0.95
getRootSchemaMethod · 0.65
iteratorMethod · 0.65
getMethod · 0.65
tablesMethod · 0.65
getQueryProviderMethod · 0.65
asListMethod · 0.45
nextMethod · 0.45
hasNextMethod · 0.45

Tested by 1

testTableWhereMethod · 0.76