compileFrom method

String compileFrom(
  1. String table
)

Compile the "from" portion of the query.

Implementation

String compileFrom(String table) {
  return 'FROM ${wrapTable(table)}';
}