-
Notifications
You must be signed in to change notification settings - Fork 20
Plugins
Jakub Puchała edited this page Mar 26, 2018
·
10 revisions
Musoq uses conception of schemas and virtual tables. When typing ... from #csv.file('path/to/file.csv')
you are refering to schema named csv
and parametrized source based on which the virtual table will be created. What steps are required to create own source:
- Implement
ISchemaTable
. It defines what columns table has. - Implement queryable source by inheriting from
RowSource
. - Implement user defined functions by inheriting from
LibraryBase