DynamoAdapter.prototype.rawQuery<T>(_sql: string,_params?: unknown[]): Promise<T[]>
Refuses the raw SQL query by name — DynamoDB has no SQL — rather than emulating it (the silent-divergence defect M70j closed). The error names the adapter and points at the client for native commands.
It rejects, never throws synchronously.
Promise<T[]>