Sha256: 1725efb79dd625ca385524e4eb1b20e87276436830a7f279ba37815384e62817
Contents?: true
Size: 1.15 KB
Versions: 5
Compression:
Stored size: 1.15 KB
Contents
Execution example:: column_create --table ToyBox --name price --type Int8 # [[0, 1337566253.89858, 0.000355720520019531], true] column_create --table ToyBox --name weight --type Float # [[0, 1337566253.89858, 0.000355720520019531], true] load --table ToyBox [ {"_key":"Monkey","price":15.9} {"_key":"Flower","price":200,"weight":0.13} {"_key":"Block","weight":25.7} ] # [[0, 1337566253.89858, 0.000355720520019531], 3] select --table ToyBox --output_columns _key,price,weight # [ # [ # 0, # 1337566253.89858, # 0.000355720520019531 # ], # [ # [ # [ # 3 # ], # [ # [ # "_key", # "ShortText" # ], # [ # "price", # "Int8" # ], # [ # "weight", # "Float" # ] # ], # [ # "Monkey", # 15, # 0.0 # ], # [ # "Flower", # -56, # 0.13 # ], # [ # "Block", # 0, # 25.7 # ] # ] # ] # ]
Version data entries
5 entries across 5 versions & 1 rubygems