Kirill Yukhin

Results 22 issues of 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.

teamC
test

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...

build
5sp
teamC
unplanned

With ORDER BY, NULLs come before other values. To be compatible with Oracle we need to make NULLs last.

feature
sql

Host issue for ANSI SQL-related issues.

feature
sql

Local spaces are not match TEMPORARY TABLES. Need to make sure, that this feature can be implemented at all. Tentative so far.

feature
needs feedback
sql
complicated

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 --...

feature
sql

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...

feature
sql

> Currently we require "create trigger ... begin ... end". There shouldn't be a need for "begin ... end" if there only is one statement enclosed.

feature
sql
good first issue

Need to be able to pass and properly use bitset indexes in SQLite query planner. Post 1.8.x feature.

feature
sql

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...

feature
sql