Skip to content

Commit

Permalink
Fix types.Rmd for type conversions
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborcsardi committed Jul 20, 2024
1 parent b72c32f commit d082040
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions man/nanoparquet-types.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions tools/types.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,17 @@ To change the default R to Parquet mapping, use [parquet_schema()] and
the `schema` argument of [write_parquet()]. Currently supported
non-default mappings are:

- `integer` to `INT64`,
- `integer` to `INT96`,
- `double` to `INT96`,
- `double` to `FLOAT`,
- `character` to `FIXED_LEN_BYTE_ARRAY`,
- `character` to `ENUM`,
- `factor` to `ENUM`,
- `integer` to `DECIAML` & `INT32`,
- `integer` to `DECIAML` & `INT64`,
- `double` to `DECIAML` & `INT32`,
- `double` to `DECIAML` & `INT64`,
- `integer` to `INT(8, *)`, `INT(16, *)`, INT(32, signed)`,
- `double` to `INT(*, *)`,
- `character` to `UUID`,
Expand Down

0 comments on commit d082040

Please sign in to comment.