Copyright | (c) 2013-2023 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Synopsis
- data QueryRuntimeStatisticsRows = QueryRuntimeStatisticsRows' {}
- newQueryRuntimeStatisticsRows :: QueryRuntimeStatisticsRows
- queryRuntimeStatisticsRows_inputBytes :: Lens' QueryRuntimeStatisticsRows (Maybe Integer)
- queryRuntimeStatisticsRows_inputRows :: Lens' QueryRuntimeStatisticsRows (Maybe Integer)
- queryRuntimeStatisticsRows_outputBytes :: Lens' QueryRuntimeStatisticsRows (Maybe Integer)
- queryRuntimeStatisticsRows_outputRows :: Lens' QueryRuntimeStatisticsRows (Maybe Integer)
Documentation
data QueryRuntimeStatisticsRows Source #
Statistics such as input rows and bytes read by the query, rows and bytes output by the query, and the number of rows written by the query.
See: newQueryRuntimeStatisticsRows
smart constructor.
QueryRuntimeStatisticsRows' | |
|
Instances
newQueryRuntimeStatisticsRows :: QueryRuntimeStatisticsRows Source #
Create a value of QueryRuntimeStatisticsRows
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:inputBytes:QueryRuntimeStatisticsRows'
, queryRuntimeStatisticsRows_inputBytes
- The number of bytes read to execute the query.
$sel:inputRows:QueryRuntimeStatisticsRows'
, queryRuntimeStatisticsRows_inputRows
- The number of rows read to execute the query.
$sel:outputBytes:QueryRuntimeStatisticsRows'
, queryRuntimeStatisticsRows_outputBytes
- The number of bytes returned by the query.
$sel:outputRows:QueryRuntimeStatisticsRows'
, queryRuntimeStatisticsRows_outputRows
- The number of rows returned by the query.
queryRuntimeStatisticsRows_inputBytes :: Lens' QueryRuntimeStatisticsRows (Maybe Integer) Source #
The number of bytes read to execute the query.
queryRuntimeStatisticsRows_inputRows :: Lens' QueryRuntimeStatisticsRows (Maybe Integer) Source #
The number of rows read to execute the query.
queryRuntimeStatisticsRows_outputBytes :: Lens' QueryRuntimeStatisticsRows (Maybe Integer) Source #
The number of bytes returned by the query.
queryRuntimeStatisticsRows_outputRows :: Lens' QueryRuntimeStatisticsRows (Maybe Integer) Source #
The number of rows returned by the query.