composeDrop function

String composeDrop(
  1. Drop st
)

Implementation

String composeDrop(final Drop st) {
  return "DROP TABLE " +
      (st.onlyIfExists ? 'IF EXISTS ' : '') +
      st.tables.join(', ');
}