• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

tarantool / tarantool / 12045
100%
master: 88%

Build:
Build:
LAST BUILD BRANCH: ninarodicova/test2
DEFAULT BRANCH: master
Ran 11 May 2018 05:43AM UTC
Jobs 1
Files 349
Run time 18s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
12045

push

travis-ci

kyukhin
sql: fixes op-codes' generation for skip-scan

Currently we have skip-scan optimization working
the way described here:
(https://sqlite.org/optoverview.html#skipscan)

To understand the problem solved consider the example
with some skip-scan query and a table created like
CREATE TABLE t(a, b, c, PRIMARY KEY(c, b, a));

Before the patch: op-codes realization of skip-scan
relied on the following work of 'Column' op-code:
If P1 is a number of cursor pointing to the table
then P2 is number of column in 'native' order
(0 for a, 1 for b, etc)
If P1 is a number of cursor pointing to the index
then P2 in number of column in 'index' order
(0 for c, 1 for b, etc)
But currently our 'Column' op-code always consider
P2 to be column number in 'native order'.

With the patch:
P2 is always set in 'Column' as a column number
in 'native' order.

Closes #3350, #2859

2 of 2 new or added lines in 1 file covered. (100.0%)

60751 of 75245 relevant lines covered (80.74%)

1507623.72 hits per line

Coverage Regressions

Lines Coverage ∆ File
5
100.0
src/box/xlog.c
3
100.0
src/lib/small/test/lf_lifo.c
2
100.0
src/box/vy_tx.c
2
100.0
src/box/vy_scheduler.c
1
100.0
src/fiber.c
1
100.0
src/box/vclock.c
Jobs
ID Job ID Ran Files Coverage
3 12045.3 (TARGET=coverage) 11 May 2018 05:43AM UTC 0
80.74
Travis Job 12045.3
Source Files on build 12045
Detailed source file information is not available for this build.
  • Back to Repo
  • Travis Build #12045
  • 533ce8d7 on github
  • Prev Build on 2.0 (#12036)
  • Next Build on 2.0 (#12046)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc