Issue
FE: templates support
- 000
Short description and motivation for the proposed feature
Create Template function. It allows to define variables that are going to be filled later in selects
Examples of proposed syntax:
CREATE VIEW myview (
SELECT * FROM Template("integration.{{table_name}}")
);
Usage:
Select * from myview
wh...
- 000
Short description of what should be added or improved
The docs page for this integration is currently outdated. This guide shows an updated example and we should replicate it in our docs.
Video or screenshots
Here's a video showing the handler in use, for future reference.
Anything else?
No response
- 000
Short description of current behavior
created a time series model based on one of the sample tables:
CREATE MODEL mindsdb.eeg_eye_forecast
FROM example_db
(SELECT * FROM demo_data.eeg_eye)
PREDICT eyedetection
ORDER BY timestamps
WINDOW 50
HORIZON 10;
queried for predictions:
SELECT m.timesta...
- 000
Short description of what should be added or improved
Reference demo here
Video or screenshots
No response
Anything else?
SQL commands from the above demo:
SELECT *
FROM example_db.demo_data.home_rentals
WHERE days_on_market >= 10
LIMIT 10;
CREATE MODEL
mindsdb.hr_adjust_test
FROM example_d...
- 000
Short description of current behavior
If you try to make a prediction with JOIN and the input data has NULL values, it will crash and give you:
error in apply predictor step: unsupported operand type(s) for +: 'float' and 'str'
Video or screenshots
Expected behavior
Predict Null ?
How to reproduc...
- 000
I would like to source my data from StarRocks (real-time OLAP). Thanks