compileFrom method

  1. @override
String compileFrom(
  1. String table
)
override

Compile the "from" portion of the query.

Implementation

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