You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When executing the query, indexes for the test_log table were not created
using SQLite
const SQLite_CREATE =""" create table if not exists test_log ( var_time integer not null ,var_updated_at integer not null ,var_publisher text not null ,var_name text not null ,var_value float null ,var_count integer null ); create index if not exists idx_test_log_var_name on test_log (var_name); create index if not exists idx_test_log_var_time_var_name on test_log (var_time, var_name);"""
connection = SQLite.DB("test.sqlite")
DBInterface.execute(connection, SQLite_CREATE)
sqlite> EXPLAIN QUERY PLAN select* from test_log where var_name = 'test';
QUERY PLAN
`--SCAN test_log
The text was updated successfully, but these errors were encountered:
When executing the query, indexes for the
test_log
table were not createdThe text was updated successfully, but these errors were encountered: