Kirill Yukhin
Kirill Yukhin
Looks like enabling stack protector may (or may not) break backtraces for fiber.info(). Need to add a test case to cover this.
We need to add -fstack-protect (-all?) and -fpie at least. We need it for static build at least and I guess everywhere. Need to make sure that perf isn't degraded...
With ORDER BY, NULLs come before other values. To be compatible with Oracle we need to make NULLs last.
Local spaces are not match TEMPORARY TABLES. Need to make sure, that this feature can be implemented at all. Tentative so far.
SQLite by default uses creates trigger defaulting to `FOR EACH ROW`. ANSI defaulting to `FOR EACH STATEMENT`, let's follow the standard. > In SQLite, [FOR EACH ROW] is optional --...
We need to define order in which SQL- and NoSQL- triggers are fired. > There are two kinds of triggers that affect spaces: the ones that are made with box.session.on_replace...
> Currently we require "create trigger ... begin ... end". There shouldn't be a need for "begin ... end" if there only is one statement enclosed.
Need to be able to pass and properly use bitset indexes in SQLite query planner. Post 1.8.x feature.
It'll be useful to be able to define and call Lua routines from within SQL program. > The SQL definition is CREATE FUNCTION function_name (parameter list) RETURNS data_type LANGUAGE LUA...