extralite 2.8.2 → 2.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/test-bundle.yml +1 -1
- data/.github/workflows/test.yml +4 -4
- data/CHANGELOG.md +16 -1
- data/README.md +1 -1
- data/ext/extralite/common.c +64 -22
- data/ext/extralite/database.c +9 -3
- data/ext/extralite/extralite.h +1 -1
- data/ext/extralite/query.c +2 -2
- data/gemspec.rb +6 -6
- data/lib/extralite/version.rb +1 -1
- data/test/test_database.rb +60 -1
- metadata +14 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 99b4c44cc4b1661709179ecba90e49a459b76167a7aba1bea6eccb41e58305af
|
4
|
+
data.tar.gz: 56e8c49fe7f3f65285a1a89e1f435a1884e9d5a2af84e7caec5a4b635e70e345
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b635937a6454102656f00fcae58c843263c39df38d445026888ec170984e483b08810f4a7418756c629cfff861d3fe35c77032f9dde67ed7f1d8ea4fb95df54b
|
7
|
+
data.tar.gz: b317e0a21b540558c595a129a5086862d3d9729349b27d337b2cfab086395299aec1217eb1a5099cdb65d8653600c4d023b4205e50ea2c4c3fb55f9ca2c02cd6
|
data/.github/workflows/test.yml
CHANGED
@@ -11,9 +11,8 @@ jobs:
|
|
11
11
|
strategy:
|
12
12
|
fail-fast: false
|
13
13
|
matrix:
|
14
|
-
|
15
|
-
|
16
|
-
ruby: ['3.0', '3.1', '3.2', '3.3', 'head']
|
14
|
+
os: [ubuntu-latest, macos-latest]
|
15
|
+
ruby: ['3.2', '3.3', '3.4', 'head']
|
17
16
|
|
18
17
|
name: ${{matrix.os}}, ${{matrix.ruby}}
|
19
18
|
|
@@ -25,7 +24,8 @@ jobs:
|
|
25
24
|
- uses: ruby/setup-ruby@v1
|
26
25
|
with:
|
27
26
|
ruby-version: ${{matrix.ruby}}
|
28
|
-
bundler-cache: true
|
27
|
+
bundler-cache: true
|
28
|
+
apt-get: libsqlite3-dev
|
29
29
|
- name: Compile C-extension
|
30
30
|
run: bundle exec rake compile
|
31
31
|
- name: Run tests
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
|
+
## 2.11 2025-03-14
|
2
|
+
|
3
|
+
- Remove support for Ruby versions older than 3.2.
|
4
|
+
- Expand SQL given to trace proc [#80](https://github.com/digital-fabric/extralite/issues/80)
|
5
|
+
|
6
|
+
## 2.10 2025-02-17
|
7
|
+
|
8
|
+
- Update bundled SQLite to version 3.49.0.
|
9
|
+
|
10
|
+
## 2.9 2025-01-18
|
11
|
+
|
12
|
+
- Update dependencies, test matrix.
|
13
|
+
- Update bundled SQLite to version 3.48.0.
|
14
|
+
- Optimize getting column names when returning rows as hashes.
|
15
|
+
|
1
16
|
## 2.8.2 2024-06-02
|
2
17
|
|
3
|
-
- Update bundled SQLite to version 3.46.0
|
18
|
+
- Update bundled SQLite to version 3.46.0. [#74](https://github.com/digital-fabric/extralite/pull/74)
|
4
19
|
|
5
20
|
## 2.8.1 2024-04-15
|
6
21
|
|
data/README.md
CHANGED
@@ -32,7 +32,7 @@ databases.
|
|
32
32
|
Extralite comes in two flavors: the `extralite` gem which uses the
|
33
33
|
system-installed sqlite3 library, and the `extralite-bundle` gem which bundles
|
34
34
|
the latest version of SQLite
|
35
|
-
([3.
|
35
|
+
([3.49.0](https://sqlite.org/releaselog/3_49_0.html)), offering access to the
|
36
36
|
latest features and enhancements.
|
37
37
|
|
38
38
|
## Features
|
data/ext/extralite/common.c
CHANGED
@@ -135,7 +135,44 @@ inline void bind_all_parameters_from_object(sqlite3_stmt *stmt, VALUE obj) {
|
|
135
135
|
bind_parameter_value(stmt, 1, obj);
|
136
136
|
}
|
137
137
|
|
138
|
-
|
138
|
+
#define MAX_EMBEDDED_COLUMN_NAMES 12
|
139
|
+
|
140
|
+
struct column_names {
|
141
|
+
int count;
|
142
|
+
union {
|
143
|
+
VALUE array;
|
144
|
+
VALUE names[MAX_EMBEDDED_COLUMN_NAMES];
|
145
|
+
};
|
146
|
+
};
|
147
|
+
|
148
|
+
static inline void column_names_setup(struct column_names *names, int count) {
|
149
|
+
names->count = count;
|
150
|
+
names->array = (count > MAX_EMBEDDED_COLUMN_NAMES) ? rb_ary_new2(count) : Qnil;
|
151
|
+
}
|
152
|
+
|
153
|
+
static inline void column_names_set(struct column_names *names, int idx, VALUE value) {
|
154
|
+
if (names->count <= MAX_EMBEDDED_COLUMN_NAMES)
|
155
|
+
names->names[idx] = value;
|
156
|
+
else
|
157
|
+
rb_ary_push(names->array, value);
|
158
|
+
}
|
159
|
+
|
160
|
+
static inline VALUE column_names_get(struct column_names *names, int idx) {
|
161
|
+
return (names->count <= MAX_EMBEDDED_COLUMN_NAMES) ?
|
162
|
+
names->names[idx] : RARRAY_AREF(names->array, idx);
|
163
|
+
}
|
164
|
+
|
165
|
+
static inline struct column_names get_column_names(sqlite3_stmt *stmt, int column_count) {
|
166
|
+
struct column_names names;
|
167
|
+
column_names_setup(&names, column_count);
|
168
|
+
for (int i = 0; i < column_count; i++) {
|
169
|
+
VALUE name = ID2SYM(rb_intern(sqlite3_column_name(stmt, i)));
|
170
|
+
column_names_set(&names, i, name);
|
171
|
+
}
|
172
|
+
return names;
|
173
|
+
}
|
174
|
+
|
175
|
+
static inline VALUE get_column_names_array(sqlite3_stmt *stmt, int column_count) {
|
139
176
|
VALUE arr = rb_ary_new2(column_count);
|
140
177
|
for (int i = 0; i < column_count; i++) {
|
141
178
|
VALUE name = ID2SYM(rb_intern(sqlite3_column_name(stmt, i)));
|
@@ -144,11 +181,19 @@ static inline VALUE get_column_names(sqlite3_stmt *stmt, int column_count) {
|
|
144
181
|
return arr;
|
145
182
|
}
|
146
183
|
|
147
|
-
static inline VALUE row_to_hash(sqlite3_stmt *stmt, int column_count,
|
184
|
+
static inline VALUE row_to_hash(sqlite3_stmt *stmt, int column_count, struct column_names *names) {
|
148
185
|
VALUE row = rb_hash_new();
|
149
|
-
|
150
|
-
|
151
|
-
|
186
|
+
if (names->count <= MAX_EMBEDDED_COLUMN_NAMES) {
|
187
|
+
for (int i = 0; i < column_count; i++) {
|
188
|
+
VALUE value = get_column_value(stmt, i, sqlite3_column_type(stmt, i));
|
189
|
+
rb_hash_aset(row, names->names[i], value);
|
190
|
+
}
|
191
|
+
}
|
192
|
+
else {
|
193
|
+
for (int i = 0; i < column_count; i++) {
|
194
|
+
VALUE value = get_column_value(stmt, i, sqlite3_column_type(stmt, i));
|
195
|
+
rb_hash_aset(row, RARRAY_AREF(names->array, i), value);
|
196
|
+
}
|
152
197
|
}
|
153
198
|
return row;
|
154
199
|
}
|
@@ -327,12 +372,12 @@ VALUE safe_query_hash(query_ctx *ctx) {
|
|
327
372
|
VALUE array = ROW_MULTI_P(ctx->row_mode) ? rb_ary_new() : Qnil;
|
328
373
|
VALUE row = Qnil;
|
329
374
|
int column_count = sqlite3_column_count(ctx->stmt);
|
330
|
-
|
375
|
+
struct column_names names = get_column_names(ctx->stmt, column_count);
|
331
376
|
int row_count = 0;
|
332
377
|
int do_transform = !NIL_P(ctx->transform_proc);
|
333
378
|
|
334
379
|
while (stmt_iterate(ctx)) {
|
335
|
-
row = row_to_hash(ctx->stmt, column_count,
|
380
|
+
row = row_to_hash(ctx->stmt, column_count, &names);
|
336
381
|
if (do_transform)
|
337
382
|
row = rb_funcall(ctx->transform_proc, ID_call, 1, row);
|
338
383
|
row_count++;
|
@@ -350,7 +395,7 @@ VALUE safe_query_hash(query_ctx *ctx) {
|
|
350
395
|
return ROW_MULTI_P(ctx->row_mode) ? array : ctx->self;
|
351
396
|
}
|
352
397
|
|
353
|
-
RB_GC_GUARD(
|
398
|
+
RB_GC_GUARD(names.array);
|
354
399
|
RB_GC_GUARD(row);
|
355
400
|
RB_GC_GUARD(array);
|
356
401
|
return ROW_MULTI_P(ctx->row_mode) ? array : Qnil;
|
@@ -445,21 +490,18 @@ VALUE safe_query_array(query_ctx *ctx) {
|
|
445
490
|
}
|
446
491
|
|
447
492
|
VALUE safe_query_single_row_hash(query_ctx *ctx) {
|
448
|
-
int column_count;
|
493
|
+
int column_count = sqlite3_column_count(ctx->stmt);
|
449
494
|
VALUE row = Qnil;
|
450
|
-
|
451
|
-
|
452
|
-
column_count = sqlite3_column_count(ctx->stmt);
|
453
|
-
column_names = get_column_names(ctx->stmt, column_count);
|
495
|
+
struct column_names names = get_column_names(ctx->stmt, column_count);
|
454
496
|
|
455
497
|
if (stmt_iterate(ctx)) {
|
456
|
-
row = row_to_hash(ctx->stmt, column_count,
|
498
|
+
row = row_to_hash(ctx->stmt, column_count, &names);
|
457
499
|
if (!NIL_P(ctx->transform_proc))
|
458
500
|
row = rb_funcall(ctx->transform_proc, ID_call, 1, row);
|
459
501
|
}
|
460
502
|
|
461
503
|
RB_GC_GUARD(row);
|
462
|
-
RB_GC_GUARD(
|
504
|
+
RB_GC_GUARD(names.array);
|
463
505
|
return row;
|
464
506
|
}
|
465
507
|
|
@@ -506,17 +548,17 @@ static inline VALUE batch_iterate_hash(query_ctx *ctx) {
|
|
506
548
|
VALUE rows = rb_ary_new();
|
507
549
|
VALUE row = Qnil;
|
508
550
|
int column_count = sqlite3_column_count(ctx->stmt);
|
509
|
-
|
551
|
+
struct column_names names = get_column_names(ctx->stmt, column_count);
|
510
552
|
const int do_transform = !NIL_P(ctx->transform_proc);
|
511
553
|
|
512
554
|
while (stmt_iterate(ctx)) {
|
513
|
-
row = row_to_hash(ctx->stmt, column_count,
|
555
|
+
row = row_to_hash(ctx->stmt, column_count, &names);
|
514
556
|
if (do_transform)
|
515
557
|
row = rb_funcall(ctx->transform_proc, ID_call, 1, row);
|
516
558
|
rb_ary_push(rows, row);
|
517
559
|
}
|
518
560
|
|
519
|
-
RB_GC_GUARD(
|
561
|
+
RB_GC_GUARD(names.array);
|
520
562
|
RB_GC_GUARD(row);
|
521
563
|
RB_GC_GUARD(rows);
|
522
564
|
return rows;
|
@@ -587,7 +629,7 @@ static inline VALUE batch_run_array(query_ctx *ctx, enum batch_mode batch_mode)
|
|
587
629
|
for (int i = 0; i < count; i++) {
|
588
630
|
sqlite3_reset(ctx->stmt);
|
589
631
|
sqlite3_clear_bindings(ctx->stmt);
|
590
|
-
Database_issue_query(ctx->db, ctx->
|
632
|
+
Database_issue_query(ctx->db, ctx->stmt);
|
591
633
|
bind_all_parameters_from_object(ctx->stmt, RARRAY_AREF(ctx->params, i));
|
592
634
|
|
593
635
|
batch_iterate(ctx, batch_mode, &rows);
|
@@ -624,7 +666,7 @@ static VALUE batch_run_each_iter(RB_BLOCK_CALL_FUNC_ARGLIST(yield_value, vctx))
|
|
624
666
|
|
625
667
|
sqlite3_reset(each_ctx->ctx->stmt);
|
626
668
|
sqlite3_clear_bindings(each_ctx->ctx->stmt);
|
627
|
-
Database_issue_query(each_ctx->ctx->db, each_ctx->ctx->
|
669
|
+
Database_issue_query(each_ctx->ctx->db, each_ctx->ctx->stmt);
|
628
670
|
bind_all_parameters_from_object(each_ctx->ctx->stmt, yield_value);
|
629
671
|
|
630
672
|
batch_iterate(each_ctx->ctx, each_ctx->batch_mode, &rows);
|
@@ -670,7 +712,7 @@ static inline VALUE batch_run_proc(query_ctx *ctx, enum batch_mode batch_mode) {
|
|
670
712
|
|
671
713
|
sqlite3_reset(ctx->stmt);
|
672
714
|
sqlite3_clear_bindings(ctx->stmt);
|
673
|
-
Database_issue_query(ctx->db, ctx->
|
715
|
+
Database_issue_query(ctx->db, ctx->stmt);
|
674
716
|
bind_all_parameters_from_object(ctx->stmt, params);
|
675
717
|
|
676
718
|
batch_iterate(ctx, batch_mode, &rows);
|
@@ -733,7 +775,7 @@ VALUE safe_batch_query_splat(query_ctx *ctx) {
|
|
733
775
|
}
|
734
776
|
|
735
777
|
VALUE safe_query_columns(query_ctx *ctx) {
|
736
|
-
return
|
778
|
+
return get_column_names_array(ctx->stmt, sqlite3_column_count(ctx->stmt));
|
737
779
|
}
|
738
780
|
|
739
781
|
VALUE safe_query_changes(query_ctx *ctx) {
|
data/ext/extralite/database.c
CHANGED
@@ -289,14 +289,16 @@ static inline VALUE Database_perform_query(int argc, VALUE *argv, VALUE self, VA
|
|
289
289
|
|
290
290
|
sql = rb_funcall(argv[0], ID_strip, 0);
|
291
291
|
if (RSTRING_LEN(sql) == 0) return Qnil;
|
292
|
+
// sql = argv[0];
|
292
293
|
|
293
|
-
Database_issue_query(db, sql);
|
294
294
|
prepare_multi_stmt(DB_GVL_MODE(db), db->sqlite3_db, &stmt, sql);
|
295
295
|
RB_GC_GUARD(sql);
|
296
296
|
|
297
297
|
if (stmt == NULL) return Qnil;
|
298
298
|
|
299
299
|
bind_all_parameters(stmt, argc - 1, argv + 1);
|
300
|
+
Database_issue_query(db, stmt);
|
301
|
+
|
300
302
|
query_ctx ctx = QUERY_CTX(
|
301
303
|
self, sql, db, stmt, Qnil, transform,
|
302
304
|
query_mode, ROW_YIELD_OR_MODE(ROW_MULTI), ALL_ROWS
|
@@ -1102,8 +1104,12 @@ static inline enum progress_handler_mode symbol_to_progress_mode(VALUE mode) {
|
|
1102
1104
|
rb_raise(eArgumentError, "Invalid progress handler mode");
|
1103
1105
|
}
|
1104
1106
|
|
1105
|
-
inline void Database_issue_query(Database_t *db,
|
1106
|
-
if (db->trace_proc != Qnil)
|
1107
|
+
inline void Database_issue_query(Database_t *db, sqlite3_stmt *stmt) {
|
1108
|
+
if (db->trace_proc != Qnil) {
|
1109
|
+
VALUE sql = rb_str_new_cstr(sqlite3_expanded_sql(stmt));
|
1110
|
+
rb_funcall(db->trace_proc, ID_call, 1, sql);
|
1111
|
+
RB_GC_GUARD(sql);
|
1112
|
+
}
|
1107
1113
|
switch (db->progress_handler.mode) {
|
1108
1114
|
case PROGRESS_AT_LEAST_ONCE:
|
1109
1115
|
case PROGRESS_ONCE:
|
data/ext/extralite/extralite.h
CHANGED
@@ -180,7 +180,7 @@ void bind_all_parameters_from_object(sqlite3_stmt *stmt, VALUE obj);
|
|
180
180
|
int stmt_iterate(query_ctx *ctx);
|
181
181
|
VALUE cleanup_stmt(query_ctx *ctx);
|
182
182
|
|
183
|
-
void Database_issue_query(Database_t *db,
|
183
|
+
void Database_issue_query(Database_t *db, sqlite3_stmt *stmt);
|
184
184
|
sqlite3 *Database_sqlite3_db(VALUE self);
|
185
185
|
enum gvl_mode Database_prepare_gvl_mode(Database_t *db);
|
186
186
|
Database_t *self_to_database(VALUE self);
|
data/ext/extralite/query.c
CHANGED
@@ -123,7 +123,7 @@ VALUE Query_initialize(VALUE self, VALUE db, VALUE sql, VALUE mode) {
|
|
123
123
|
static inline void query_reset(Query_t *query) {
|
124
124
|
if (!query->stmt)
|
125
125
|
prepare_single_stmt(DB_GVL_MODE(query), query->sqlite3_db, &query->stmt, query->sql);
|
126
|
-
Database_issue_query(query->db_struct, query->
|
126
|
+
Database_issue_query(query->db_struct, query->stmt);
|
127
127
|
sqlite3_reset(query->stmt);
|
128
128
|
query->eof = 0;
|
129
129
|
}
|
@@ -131,7 +131,7 @@ static inline void query_reset(Query_t *query) {
|
|
131
131
|
static inline void query_reset_and_bind(Query_t *query, int argc, VALUE * argv) {
|
132
132
|
if (!query->stmt)
|
133
133
|
prepare_single_stmt(DB_GVL_MODE(query), query->sqlite3_db, &query->stmt, query->sql);
|
134
|
-
Database_issue_query(query->db_struct, query->
|
134
|
+
Database_issue_query(query->db_struct, query->stmt);
|
135
135
|
sqlite3_reset(query->stmt);
|
136
136
|
query->eof = 0;
|
137
137
|
if (argc > 0) {
|
data/gemspec.rb
CHANGED
@@ -15,11 +15,11 @@ def common_spec(s)
|
|
15
15
|
s.rdoc_options = ['--title', 'Extralite', '--main', 'README.md']
|
16
16
|
s.extra_rdoc_files = ['README.md']
|
17
17
|
s.require_paths = ['lib']
|
18
|
-
s.required_ruby_version = '>= 3.
|
18
|
+
s.required_ruby_version = '>= 3.2'
|
19
19
|
|
20
|
-
s.add_development_dependency 'rake-compiler', '1.2.
|
21
|
-
s.add_development_dependency 'minitest', '5.
|
22
|
-
s.add_development_dependency 'simplecov', '0.
|
23
|
-
s.add_development_dependency 'yard', '0.9.
|
24
|
-
s.add_development_dependency 'sequel', '5.
|
20
|
+
s.add_development_dependency 'rake-compiler', '1.2.9'
|
21
|
+
s.add_development_dependency 'minitest', '5.25.4'
|
22
|
+
s.add_development_dependency 'simplecov', '0.22.0'
|
23
|
+
s.add_development_dependency 'yard', '0.9.37'
|
24
|
+
s.add_development_dependency 'sequel', '5.88.0'
|
25
25
|
end
|
data/lib/extralite/version.rb
CHANGED
data/test/test_database.rb
CHANGED
@@ -40,6 +40,19 @@ class DatabaseTest < Minitest::Test
|
|
40
40
|
assert_equal [], r
|
41
41
|
end
|
42
42
|
|
43
|
+
def test_query_hash_with_many_columns
|
44
|
+
# this tests correct processing cof column names when column count is more than
|
45
|
+
# MAX_EMBEDDED_COLUMN_NAMES
|
46
|
+
r = @db.query_hash("
|
47
|
+
select 1 as a, 2 as b, 3 as c, 4 as d, 5 as e, 6 as f, 7 as g, 8 as h, 9 as i, 10 as j,
|
48
|
+
11 as k, 12 as l, 13 as m, 14 as n, 15 as o, 16 as p, 17 as q, 18 as r, 19 as s, 20 as t
|
49
|
+
")
|
50
|
+
assert_equal [{
|
51
|
+
a: 1, b: 2, c: 3, d: 4, e: 5, f: 6, g: 7, h: 8, i: 9, j: 10,
|
52
|
+
k: 11, l: 12, m: 13, n: 14, o: 15, p: 16, q: 17, r: 18, s: 19, t: 20
|
53
|
+
}], r
|
54
|
+
end
|
55
|
+
|
43
56
|
def test_query_array
|
44
57
|
r = @db.query_array('select * from t')
|
45
58
|
assert_equal [[1, 2, 3], [4, 5, 6]], r
|
@@ -363,7 +376,6 @@ class DatabaseTest < Minitest::Test
|
|
363
376
|
[1, '2', 3],
|
364
377
|
['4', 5, 6]
|
365
378
|
]
|
366
|
-
|
367
379
|
changes = @db.batch_execute('insert into foo values (?, ?, ?)', records)
|
368
380
|
|
369
381
|
assert_equal 2, changes
|
@@ -373,6 +385,23 @@ class DatabaseTest < Minitest::Test
|
|
373
385
|
], @db.query('select * from foo')
|
374
386
|
end
|
375
387
|
|
388
|
+
def test_batch_execute_with_array_of_hashes
|
389
|
+
@db.query('create table foo (a, b, c)')
|
390
|
+
assert_equal [], @db.query('select * from foo')
|
391
|
+
|
392
|
+
records = [
|
393
|
+
{ a: 1, b: '2', c: 3 },
|
394
|
+
{ a: '4', b: 5, c: 6 }
|
395
|
+
]
|
396
|
+
changes = @db.batch_execute('insert into foo values (:a, :b, :c)', records)
|
397
|
+
|
398
|
+
# assert_equal 2, changes
|
399
|
+
assert_equal [
|
400
|
+
{ a: 1, b: '2', c: 3 },
|
401
|
+
{ a: '4', b: 5, c: 6 }
|
402
|
+
], @db.query('select * from foo')
|
403
|
+
end
|
404
|
+
|
376
405
|
def test_batch_execute_single_values
|
377
406
|
@db.query('create table foo (bar)')
|
378
407
|
assert_equal [], @db.query('select * from foo')
|
@@ -1216,6 +1245,18 @@ class ScenarioTest < Minitest::Test
|
|
1216
1245
|
@db.query('select 4')
|
1217
1246
|
assert_equal ['select 1', 'select 2', 'select 3'], sqls
|
1218
1247
|
end
|
1248
|
+
|
1249
|
+
def test_database_trace_expanded_sql
|
1250
|
+
sqls = []
|
1251
|
+
@db.trace { |sql| sqls << sql }
|
1252
|
+
|
1253
|
+
@db.query('select ?, ?, ?', 1, '2', 3)
|
1254
|
+
assert_equal ["select 1, '2', 3"], sqls
|
1255
|
+
|
1256
|
+
sqls = []
|
1257
|
+
@db.query('select :x, :y, :z', x: 42, y: '43')
|
1258
|
+
assert_equal ["select 42, '43', NULL"], sqls
|
1259
|
+
end
|
1219
1260
|
end
|
1220
1261
|
|
1221
1262
|
class BackupTest < Minitest::Test
|
@@ -1359,6 +1400,12 @@ class ConcurrencyTest < Minitest::Test
|
|
1359
1400
|
def test_progress_handler_simple
|
1360
1401
|
db = Extralite::Database.new(':memory:')
|
1361
1402
|
|
1403
|
+
# SQLite's behaviour post 3.46.0 has changed, such that the first time the
|
1404
|
+
# query is ran, the progress handler is called more times than in later
|
1405
|
+
# invocations, so here we run it once before measuring, in order to have
|
1406
|
+
# reliable figures.
|
1407
|
+
result = db.query_single('select 1 as a, 2 as b, 3 as c')
|
1408
|
+
|
1362
1409
|
buf = []
|
1363
1410
|
db.on_progress(period: 1) { buf << :progress }
|
1364
1411
|
|
@@ -1377,6 +1424,12 @@ class ConcurrencyTest < Minitest::Test
|
|
1377
1424
|
def test_progress_handler_normal_mode
|
1378
1425
|
db = Extralite::Database.new(':memory:')
|
1379
1426
|
|
1427
|
+
# SQLite's behaviour post 3.46.0 has changed, such that the first time the
|
1428
|
+
# query is ran, the progress handler is called more times than in later
|
1429
|
+
# invocations, so here we run it once before measuring, in order to have
|
1430
|
+
# reliable figures.
|
1431
|
+
db.query('select 1 as a')
|
1432
|
+
|
1380
1433
|
count = 0
|
1381
1434
|
db.on_progress(period: 1) { count += 1 }
|
1382
1435
|
db.query('select 1 as a')
|
@@ -1397,6 +1450,12 @@ class ConcurrencyTest < Minitest::Test
|
|
1397
1450
|
def test_progress_handler_at_least_once_mode
|
1398
1451
|
db = Extralite::Database.new(':memory:')
|
1399
1452
|
|
1453
|
+
# SQLite's behaviour post 3.46.0 has changed, such that the first time the
|
1454
|
+
# query is ran, the progress handler is called more times than in later
|
1455
|
+
# invocations, so here we run it once before measuring, in order to have
|
1456
|
+
# reliable figures.
|
1457
|
+
db.query('select 1 as a')
|
1458
|
+
|
1400
1459
|
count = 0
|
1401
1460
|
db.on_progress(period: 1) { count += 1 }
|
1402
1461
|
db.query('select 1 as a')
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: extralite
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: '2.11'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sharon Rosner
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-14 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: rake-compiler
|
@@ -16,71 +15,70 @@ dependencies:
|
|
16
15
|
requirements:
|
17
16
|
- - '='
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.2.
|
18
|
+
version: 1.2.9
|
20
19
|
type: :development
|
21
20
|
prerelease: false
|
22
21
|
version_requirements: !ruby/object:Gem::Requirement
|
23
22
|
requirements:
|
24
23
|
- - '='
|
25
24
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.2.
|
25
|
+
version: 1.2.9
|
27
26
|
- !ruby/object:Gem::Dependency
|
28
27
|
name: minitest
|
29
28
|
requirement: !ruby/object:Gem::Requirement
|
30
29
|
requirements:
|
31
30
|
- - '='
|
32
31
|
- !ruby/object:Gem::Version
|
33
|
-
version: 5.
|
32
|
+
version: 5.25.4
|
34
33
|
type: :development
|
35
34
|
prerelease: false
|
36
35
|
version_requirements: !ruby/object:Gem::Requirement
|
37
36
|
requirements:
|
38
37
|
- - '='
|
39
38
|
- !ruby/object:Gem::Version
|
40
|
-
version: 5.
|
39
|
+
version: 5.25.4
|
41
40
|
- !ruby/object:Gem::Dependency
|
42
41
|
name: simplecov
|
43
42
|
requirement: !ruby/object:Gem::Requirement
|
44
43
|
requirements:
|
45
44
|
- - '='
|
46
45
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.
|
46
|
+
version: 0.22.0
|
48
47
|
type: :development
|
49
48
|
prerelease: false
|
50
49
|
version_requirements: !ruby/object:Gem::Requirement
|
51
50
|
requirements:
|
52
51
|
- - '='
|
53
52
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.
|
53
|
+
version: 0.22.0
|
55
54
|
- !ruby/object:Gem::Dependency
|
56
55
|
name: yard
|
57
56
|
requirement: !ruby/object:Gem::Requirement
|
58
57
|
requirements:
|
59
58
|
- - '='
|
60
59
|
- !ruby/object:Gem::Version
|
61
|
-
version: 0.9.
|
60
|
+
version: 0.9.37
|
62
61
|
type: :development
|
63
62
|
prerelease: false
|
64
63
|
version_requirements: !ruby/object:Gem::Requirement
|
65
64
|
requirements:
|
66
65
|
- - '='
|
67
66
|
- !ruby/object:Gem::Version
|
68
|
-
version: 0.9.
|
67
|
+
version: 0.9.37
|
69
68
|
- !ruby/object:Gem::Dependency
|
70
69
|
name: sequel
|
71
70
|
requirement: !ruby/object:Gem::Requirement
|
72
71
|
requirements:
|
73
72
|
- - '='
|
74
73
|
- !ruby/object:Gem::Version
|
75
|
-
version: 5.
|
74
|
+
version: 5.88.0
|
76
75
|
type: :development
|
77
76
|
prerelease: false
|
78
77
|
version_requirements: !ruby/object:Gem::Requirement
|
79
78
|
requirements:
|
80
79
|
- - '='
|
81
80
|
- !ruby/object:Gem::Version
|
82
|
-
version: 5.
|
83
|
-
description:
|
81
|
+
version: 5.88.0
|
84
82
|
email: sharon@noteflakes.com
|
85
83
|
executables: []
|
86
84
|
extensions:
|
@@ -153,7 +151,6 @@ metadata:
|
|
153
151
|
homepage_uri: https://github.com/digital-fabric/extralite
|
154
152
|
documentation_uri: https://www.rubydoc.info/gems/extralite
|
155
153
|
changelog_uri: https://github.com/digital-fabric/extralite/blob/master/CHANGELOG.md
|
156
|
-
post_install_message:
|
157
154
|
rdoc_options:
|
158
155
|
- "--title"
|
159
156
|
- Extralite
|
@@ -165,15 +162,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
165
162
|
requirements:
|
166
163
|
- - ">="
|
167
164
|
- !ruby/object:Gem::Version
|
168
|
-
version: '3.
|
165
|
+
version: '3.2'
|
169
166
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
170
167
|
requirements:
|
171
168
|
- - ">="
|
172
169
|
- !ruby/object:Gem::Version
|
173
170
|
version: '0'
|
174
171
|
requirements: []
|
175
|
-
rubygems_version: 3.
|
176
|
-
signing_key:
|
172
|
+
rubygems_version: 3.6.2
|
177
173
|
specification_version: 4
|
178
174
|
summary: Extra-lightweight SQLite3 wrapper for Ruby
|
179
175
|
test_files: []
|