Changes between Version 78 and Version 79 of FAQ


Ignore:
Timestamp:
Nov 2, 2011, 12:13:12 PM (13 years ago)
Author:
Peter Baumann
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v78 v79  
    116116insert into FloatCollection values (float) inv_tiff( $1 )
    117117}}}
     118
     119=== How do I position a replacement array when updating a collection? ===
     120
     121 * In an update statement, the slice coordinates are specified with the set operator, however the 2D position of the replacement array is specified with the shift operator.
     122   For example a query to update the 3D collection C with a 2D image of size 255x210 that should replace the region at interval [10, 100:355, 100:310]:
     123{{{
     124update C set [10, *:*, *:*] assign shift(inv_tiff($1), [10, 100])
     125}}}
    118126
    119127=== How does the Storage Layout Language work? ===