Pre-allocate row slices.

This commit is contained in:
go-jet 2025-10-18 14:54:18 +02:00
parent 02bae5a2cb
commit 4f81f5af63
2 changed files with 13 additions and 29 deletions

View file

@ -214,7 +214,7 @@ stmt := SELECT(
> Package(dot) import is used, so the statements look as close as possible to the native SQL.
Note that every column has a type. String columns, such as `Language.Name` and `Category.Name` can only be compared with
string columns and expressions. Similarity, `Actor.ActorID`, `FilmActor.ActorID`, `Film.Length` are integer columns
string columns and expressions. Similarly, `Actor.ActorID`, `FilmActor.ActorID`, `Film.Length` are integer columns
and can only be compared with integer columns and expressions. The same type safety rules apply to arrays and their
element types.