Sha256: 9d362935d50ea834fe1ecc0d411d2b033011a2ef952d52c714ca9b7cdeb9fab4

Contents?: true

Size: 814 Bytes

Versions: 1

Compression:

Stored size: 814 Bytes

Contents

* RENAME: add prefix, suffix and lambda renaming
  
        (rename :suppliers, [:name, :city], :prefix => "supplier_")
        (rename :suppliers, [:name, :city], :suffix => "_sup")
        (rename :suppliers, [:name, :city], lambda{|name| name.upcase}) 

* NEST: provide a multi-nesting ability?

        (nest (nest :supplies, [:a, :b], :x), [:x, :c], :y)
         => (nest :supplies, :x => [:a, :b], :y => [:x, :c])

    But this would only work with Ruby 1.9 as the hash order would be important
    as such

* GROUP: provide a multi-grouping ability?

    Similar to nest, with same limitation.
  
* Add PIVOT and UNPIVOT operators

* Add MATCHING, NOT_MATCHING

* Add a to_ruby abstraction and replace inspect usages in TupleHandle and
  Rash renderer

* Find a way to complete the description of Quota...  

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
alf-0.9.0 TODO.md