mirror of
https://github.com/enso-org/enso.git
synced 2024-11-24 08:41:40 +03:00
a0c6fa9c96
- Removed `select` method. - Removed `group` method. - Removed `Aggregate_Table` type. - Removed `Order_Rule` type. - Removed `sort` method from Table. - Expanded comments on `order_by`. - Update comment on `aggregate` on Database. - Update Visualisation to use new APIs. - Updated Data Science examples to use new APIs. - Moved Examples test out of Tests to own test. # Important Notes Need to get Examples_Tests added to CI.
32 lines
1.0 KiB
YAML
32 lines
1.0 KiB
YAML
name: Database
|
|
namespace: Standard
|
|
version: 0.0.0-dev
|
|
license: APLv2
|
|
authors:
|
|
- name: Enso Team
|
|
email: contact@enso.org
|
|
maintainers:
|
|
- name: Enso Team
|
|
email: contact@enso.org
|
|
component-groups:
|
|
extends:
|
|
- Standard.Base.Input:
|
|
exports:
|
|
- Standard.Database.Connection.Database.connect
|
|
- Standard.Base.Select:
|
|
exports:
|
|
- Standard.Database.Data.Table.Table.at
|
|
- Standard.Database.Data.Table.Table.select_columns
|
|
- Standard.Database.Data.Table.Table.rename_columns
|
|
- Standard.Database.Data.Table.Table.remove_columns
|
|
- Standard.Database.Data.Table.Table.reorder_columns
|
|
- Standard.Database.Data.Table.Table.sort_columns
|
|
- Standard.Base.Join:
|
|
exports:
|
|
- Standard.Database.Data.Table.Table.join
|
|
- Standard.Database.Data.Table.Table.aggregate
|
|
- Standard.Base.Transform:
|
|
exports:
|
|
- Standard.Database.Data.Table.Table.order_by
|
|
- Standard.Database.Data.Column.Column.to_table
|