Sha256: 0b353edf04244f10f8e27ebf30435d31f086e79743522e450161bd79d8b3355d

Contents?: true

Size: 814 Bytes

Versions: 2

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}) 

* WRAP: provide a multi-wraping ability?

        (wrap (wrap :supplies, [:a, :b], :x), [:x, :c], :y)
         => (wrap :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 wrap, 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

2 entries across 2 versions & 1 rubygems

Version Path
alf-0.9.2 TODO.md
alf-0.9.1 TODO.md