| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| :returns: A tuple of data converted to native types. | ||
| """ | ||
| row_data = [] | ||
| for field, cell in zip(schema, row['f']): |
| """Convert JSON row data to rows with appropriate types.""" | ||
| return [_row_from_json(row, schema) for row in rows] | ||
| # Converters used for scalar values marshalled as query parameters. | ||
| _SCALAR_VALUE_TO_JSON_PARM = _SCALAR_VALUE_TO_JSON_ROW.copy() |
| # Specifies the number of seconds since the epoch. | ||
| value = _convert_timestamp(value) | ||
| converter = _SCALAR_VALUE_TO_JSON_ROW.get(field.field_type) | ||
| if converter is not None: |
| Back | FazBrowse Home | New Git URL |
Closes #2957.