RussellSpitzer commented on code in PR #10955:
URL: https://github.com/apache/iceberg/pull/10955#discussion_r1767616876


##########
format/spec.md:
##########
@@ -222,11 +228,31 @@ Schemas may be evolved by type promotion or adding, 
deleting, renaming, or reord
 
 Evolution applies changes to the table's current schema to produce a new 
schema that is identified by a unique schema ID, is added to the table's list 
of schemas, and is set as the table's current schema.
 
-Valid type promotions are:
+Valid primitive type promotions are:
+
+| Primitive type   | v1, v2 valid type promotions | v3+ valid type promotions  
  | Requirements |
+|------------------|------------------------------|------------------------------|--------------|
+| `unknown`        |                              | _any type_                 
  | |
+| `int`            | `long`                       | `long`                     
  | |
+| `date`           |                              | `timestamp`, 
`timestamp_ns`  | Promotion to `timestamptz` or `timestamptz_ns` is **not** 
allowed |
+| `float`          | `double`                     | `double`                   
  | |
+| `decimal(P, S)`  | `decimal(P', S)` if `P' > P` | `decimal(P', S)` if `P' > 
P` | Widen precision only |
 
-* `int` to `long`
-* `float` to `double`
-* `decimal(P, S)` to `decimal(P', S)` if `P' > P` -- widen the precision of 
decimal types.
+Iceberg's Avro manifest format does not store the type of lower and upper 
bounds, and type promotion does not rewrite existing bounds. For example, when 
a `float` is promoted to `double`, existing data file bounds are encoded as 4 
little-endian bytes rather than 8 little-endian bytes for `double`. To 
correctly decode the value, the original type at the time the file was written 
must be inferred according to the following table:
+
+| Current type     | Length of bounds | Inferred type at write time |
+|------------------|------------------|-----------------------------|
+| `long`           | 4 bytes          | `int`                       |
+| `long`           | 8 bytes          | `long`                      |
+| `double`         | 4 bytes          | `float`                     |
+| `double`         | 8 bytes          | `double`                    |
+| `timestamp`      | 4 bytes          | `date`                      |
+| `timestamp`      | 8 bytes          | `timestamp`                 |
+| `timestamp_ns`   | 4 bytes          | `date`                      |
+| `timestamp_ns`   | 8 bytes          | `timestamp_ns`              |
+| `decimal(P, S)`  | _any_            | `decimal(P', S)`; `P' <= P` |
+
+Type promotion is not allowed for a field that is referenced by `source-id` or 
`source-ids` of a partition field if the partition transform would produce a 
different value after promoting the type. For example, `bucket[N]` produces 
different hash values for `34` and `"34"` (2017239379 != -427558391) but the 
same value for `34` and `34L`; when an `int` field is the source for a bucket 
partition field, it may be promoted to `long` but not to `string`.

Review Comment:
   I think the example here is now not allowed at all since you cannot do a int 
-> string by definition.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to