prosto icon indicating copy to clipboard operation
prosto copied to clipboard

Prosto is a data processing toolkit radically changing how data is processed by heavily relying on functions and operations with functions - an alternative to map-reduce and join-groupby

Results 5 prosto issues
Sort by recently updated
recently updated
newest added

Problem: currently it is not possible to set initial value for aggregations (a default value is always used). For example, if we use sum for aggregation then default initial value...

operation

Implement helper functions: * Print current data schema, that is, list of tables, list of columns and their connections. For example, names `print_schema` * Print graph of operations with dependencies....

enhancement

Currently Column-SQL is parsed using a simple function. Although it words, it has some limitations, for example, with respect to literals, enforcing more flexible syntactic rules etc. The goal of...

column-sql

The parser returns a syntactic structure. The task is to validate this structure. The main alternative is * Validate without name resolution and bindings. It is relatively simple because we...

tests
column-sql

Problem: the aggregation operation works only with link columns for grouping. It is a column operation which adds a new aggregate column to the group table. The group table must...

operation