resolveResultSetForReference method

ResultSetAvailableInStatement? resolveResultSetForReference(
  1. String name
)

Attempts to find a result set that has been added to this scope, for instance because it was introduced in a FROM clause.

This is useful to resolve qualified references (e.g. to resolve foo.bar the resolver would call resolveResultSet and then look up the bar column in that result set).

Implementation

ResultSetAvailableInStatement? resolveResultSetForReference(String name) =>
    null;