Thanks to visit codestin.com
Credit goes to chromium.googlesource.com
Sign in
chromium
/
external
/
github.com
/
sqlite
/
sqlite
/
HEAD
/
src
/
test1.c
f18bf89
Fix VACUUM so that it works even when ATTACH_WRITE is disabled.
by drh
· 7 weeks ago
82d05b7
The win32lock and win32longpath tests don't work on Cygwin
by jan.nijtmans
· 4 months ago
b37f8b9
Patch an unnecessary size_t-to-int conversion which warns on some compilers.
by stephan
· 4 months ago
065c0a6
Test app/script patches from Jan Nijtmans for cygwin. Add/replace many more sentinel arguments for TCL variadic functions which specifically need a NULL trailing argument. With this, 'make test' on cygwin runs to completion for me, with 134 of 329227 tests failing. MSC build fails the same 13 tests which fail for me in trunk.
by stephan
· 4 months ago
b6503f1
Cygwin-centric fixes from Jan Nijtmans.
by stephan
· 5 months ago
138951d
Merge latest changes from trunk into this branch.
by dan
· 5 months ago
2d87894
Experimental change to allow clients to block when taking a SHARED lock to connect to a wal mode database.
by dan
· 5 months ago
43aad25
Add the sqlite3_setlk_timeout() API. For setting the timeout used by SQLITE_ENABLE_SETLK_TIMEOUT blocking locks without also setting the regular retry-based busy-timeout.
by dan
· 6 months ago
43afab2
GCC 13 has become more quite pedantic about the signature of functions matching the
by drh
· 6 months ago
ece1729
Fix a memory error in test logic introduced by [8704034254938662].
by drh
· 6 months ago
a5dbae3
Fix a minor problem with the sqlite3_get_table_printf() test interface.
by drh
· 6 months ago
ce50282
Properly wait for asynchronous results for calls to LockFileEx() on FILE_FLAG_OVERLAPPED files even if LOCKFILE_FAIL_IMMEDIATELY, which usually causes LockFileEx() to return synchronously, is specified.
by dan
· 7 months ago
d26bb37
Fix a buffer overread in test code. Add test configurations for ENABLE_SETLK=1 and FOR_WINRT=1 builds to release testing.
by dan
· 7 months ago
b1ad83a
Ensure that all win32 API functions invocations in os_win.c are made via the function table. Fix asan error in test code.
by dan
· 7 months ago
d4545bc
Fix the lock_win32_file test command so that it works with winrt builds.
by dan
· 8 months ago
9d59235
Fix a problem with SQLITE_OS_WINRT builds.
by dan
· 8 months ago
c6a6f15
Fix harmless compiler warnings.
by drh
· 9 months ago
bc4df60
Remove the never-used and never-documented and long-ago deprecated
by drh
· 9 months ago
4f237f8
Fix harmless compiler warnings. One of the warnings was code that
by drh
· 9 months ago
e8b2c92
Remove all code that makes use of the C-language "long double" datatype.
by drh
· 10 months ago
deb6a60
Fix harmless compiler warnings.
by drh
· 11 months ago
235b5d0
If a subquery is materialized due to an ORDER BY and that ordering is useful
by drh
· 11 months ago
555aaa4
Fix a few minor TCL9 compatibilities issues.
by drh
· 11 months ago
ed1b616
More tweaks to testfixture-implemented TCL commands to make them safe for Tcl9.
by drh
· 12 months ago
15fef79
Fixes to testfixture routines needed to test snapshots.
by drh
· 12 months ago
ad2bcef
Remove obsolete testfixture TCL commands formerly required by Windows
by drh
· 12 months ago
096c22a
Minor adjustments to get Tcl9-based testing working on Macs.
by drh
· 12 months ago
f504cc7
Implement a new comparison routine to compare text renderings of
by drh
· 12 months ago
064b681
First attempt at getting the build to work with Tcl 9.0.
by drh
· 12 months ago
3107922
Add the stmtrand() extension function for use in testing.
by drh
· 1 year, 2 months ago
4c43f18
When doing a text-affinity comparison between two values where one or both
by drh
· 1 year, 6 months ago
cf6fe5a
Add randomjson.c to testfixture. Use it for a new set of invariant tests
by drh
· 1 year, 7 months ago
ca9dc17
Fix a problem with SQLITE_CHANGESETAPPLY_FKNOACTION and the foreign-key-trigger-cache.
by dan
· 1 year, 9 months ago
61df55d
Fix harmless compiler warnings in the testfixture testing utility.
by drh
· 1 year, 10 months ago
a910f3f
New conversion letters added to strftime(): %e, %k, %I, %l, %R, %P, %p, %T, %u.
by drh
· 1 year, 11 months ago
d192b44
Restore part of the UPDATE one-pass optimization that was removed by
by drh
· 2 years ago
e393f6e
Add the experimental sqlite3_stmt_explain(S,E) interface.
by drh
· 2 years ago
bae9108
Add option 2 to SQLITE_TESTCTRL_USELONGDOUBLE to move the setting to its
by drh
· 2 years ago
1b3c6e7
Whether or not to use the long-double floating point conversion technique
by drh
· 2 years, 1 month ago
0478d1d
New test cases for floating-point conversions.
by drh
· 2 years, 1 month ago
1bfe92a
Add extra debugging code for sqlite3_stmt_scanstatus_v2() to test1.c.
by dan
· 2 years, 1 month ago
8e5cef7
Fix harmless compiler warnings that show up on 32-bit RaspberryPI builds.
by drh
· 2 years, 1 month ago
55be216
Fix straggler misspellings and tidy the custom dictionary. Also include pickups from [forum:/info/c61fb09afd|forum post c61fb09afd].
by larrybr
· 2 years, 1 month ago
spell-check
bc91738
Add a C-source spell-checking facility. make misspell (on Nix)
by larrybr
· 2 years, 1 month ago
179c32c
Generalize the LEFT JOIN strength reduction optimization so that it works for
by drh
· 2 years, 2 months ago
41334cf
Fix SQLITE_OMIT_VIRTUALTABLE builds of testfixture.
by dan
· 2 years, 3 months ago
06382de
Change the name of SQLITE_DBCONFIG_STMT_SCANSTATS to SQLITE_DBCONFIG_STMT_SCANSTATUS.
by dan
· 2 years, 5 months ago
45163fc
Add an sqlite3_db_config() option - SQLITE_DBCONFIG_STMT_SCANSTATS - for enabling and disabling the collection of sqlite3_stmt_scanstats() statistics in SQLITE_ENABLE_STMT_SCANSTATUS builds. Collection of statistics is disabled by default.
by dan
· 2 years, 5 months ago
b211a4b
Improve the error message generated by the recovery extension if it is used with a non-SQLITE_ENABLE_DBPAGE_VTAB build.
by dan
· 2 years, 5 months ago
1fa0f27
Add the "number_of_cores" TCL command to the testfixture.
by drh
· 2 years, 5 months ago
3fdb05e
Fix a memory leak in the TCL test harness associated with carray.
by drh
· 2 years, 6 months ago
a96cd07
Extend the carray extension to allow the use of BLOB values to be bound
by drh
· 2 years, 6 months ago
3b7a19b
Add a new sqlite3_is_interrupted() interface that can be used by long-running
by drh
· 2 years, 6 months ago
231ff4b
Enhance the sqlite3_stmt_scanstatus() API and add sqlite3_stmt_scanstatus_v2(). For creation of easier to read query performance reports.
by dan
· 2 years, 8 months ago
bf82c95
Add test/basexx1.test to test is_base85(t), base85(x) and base64(x). Sync w/trunk.
by larrybr
· 2 years, 8 months ago
dc5e8c6
Improvements to comments. Change the "optimization_control" TCL command
by drh
· 2 years, 9 months ago
tkt-57c47526
b6d9167
Do not flatten a UNION ALL subquery where the column affinities do not match
by drh
· 2 years, 9 months ago
9b6a283
Fix minor problems in test1.c test code.
by dan
· 2 years, 9 months ago
5e431be
Rename debugging defines and variables from SELECTTRACE to TREETRACE (and
by drh
· 3 years, 4 months ago
85548fa
Use the enhanced SQLITE_TESTCTRL_LOCALTIME_FAULT (2) capability to do better
by drh
· 3 years, 5 months ago
d7e185c
Enhance SQLITE_TESTCTRL_LOCALTIME_FAULT so that is able to install an
by drh
· 3 years, 5 months ago
ddd3fe6
Fix the test harness so that it builds without SQLITE_ENABLE_PREUPDATE_HOOK.
by drh
· 3 years, 5 months ago
252fe67
Fix a problem with using sqlite3_bind_value() with sqlite3_value objects obtained from sqlite3_preupdate_new() when an integer value is written to a column with real affinity.
by dan
· 3 years, 5 months ago
82801a5
Initial implementation of the sqlite3_vtab_rhs_value() interface and the
by drh
· 3 years, 6 months ago
38cebe0
When implementing a multi-way compound SELECT using merge, try to balance
by drh
· 3 years, 7 months ago
9169d0c
Fix the build-breaker bug in test1.c introduced by check-in [7fa20ca4c09ab024].
by drh
· 3 years, 7 months ago
build-bug
f62641e
Add the sqlite3_error_offset() interface. Use it in the CLI to provide
by drh
· 3 years, 7 months ago
2999068
Fix fts3 and fts4 so that they can still be used even if the other is dropped by a call to sqlite3_drop_modules().
by dan
· 3 years, 7 months ago
91acf7d
Add the SQLITE_OPEN_EXRESCODE flag for sqlite3_open_v2().
by drh
· 3 years, 9 months ago
21b1c6d
Fix a memory leak in test code on this branch.
by dan
· 3 years, 9 months ago
autovacuum-pages-callback
1bbfc67
Demostrate a prototype sqlite3_autovacuum_pages() interface.
by drh
· 3 years, 9 months ago
5f9de6e
Refactor sqlite3.magic into sqlite3.eOpenState.
by drh
· 4 years ago
aecc04d
Add experimental SQLITE_FCNTL_EXTERNAL_READER file control.
by dan
· 4 years, 4 months ago
5e23ae5
For the sqlite3_bind_text16 TCL binding used for testing, ensure that there
by drh
· 4 years, 4 months ago
639ae98
In the sqlite3_bind_text and sqlite3_bind_text16 TCL commands of the test
by drh
· 4 years, 4 months ago
1b22ad8
Create initial tests for appendvfs, and make it available as a statically loaded extension.
by larrybr
· 4 years, 5 months ago
8718f0b
Fix a buffer overrun that could occur in fts5 when running a prefix query against a corrupt db.
by dan
· 4 years, 5 months ago
7b0ab21
Fix an incorrect datatype no the sqlite3WhereTrace variable in test1.c.
by drh
· 4 years, 8 months ago
c0622a4
Alternative implementation of ".selecttrace" and ".wheretrace" that uses
by drh
· 4 years, 8 months ago
c30b78f
Add test infrastructure for cksumvfs. And update cksumvfs so that it works in concert with version 2 VFSs. No changes to core SQLite.
by dan
· 4 years, 8 months ago
5011bb8
Update test code to fix a problem with SQLITE_OMIT_VIRTUAL_TABLE builds.
by dan
· 4 years, 8 months ago
ea847f1
Add a single-argument form to the CARRAY table-valued function, with
by drh
· 4 years, 8 months ago
99744fa
Add support for the sqlite3_txn_state() interface.
by drh
· 5 years ago
91faeec
Modify a test for corruption within the wal checkpoint code to account for the pending-byte page. And for the fact that test configurations might move the pending-byte page.
by dan
· 5 years ago
a6c13b2
Change the name of sqlite3SelectTrace to sqlite3_unsupported_selecttrace.
by dan
· 5 years ago
ca439a4
Disable rootpage bounds checking when the SQLITE_TESTCTRL_EXTRA_SCHEMA_CHECKS
by drh
· 5 years ago
rootpage-bounds-check
beb9def
An extension for doing decimal arithmetic on strings.
by drh
· 5 years ago
ccb2113
Refactoring various names. No changes in the resulting machine code.
by drh
· 5 years ago
9216de8
Provide the ability to use the SELECTTRACE() debugging macro outside of the
by drh
· 5 years ago
b48c0d5
Simplify the code by removing the unsupported and undocumented
by drh
· 5 years ago
171c50e
New test-only SQL functions: implies_nonnull_row(), expr_compare(), and
by drh
· 6 years ago
803f06b
Merge recent enhancements from trunk.
by drh
· 6 years ago
66c4890
Remove the legacy_file_format PRAGMA. In its place, provide the
by drh
· 6 years ago
e2b7a76
Disable sqlite3_drop_module() tests when virtual tables are omitted from
by drh
· 6 years ago
fa50834
Ensure the columns of views and sub-queries maintain their implicit collation sequences when the "push-down" optimization is applied. Fix for [18458b1a].
by dan
· 6 years ago
007ba64
Bring the hard-heap-limit branch up-to-date with trunk.
by drh
· 6 years ago
3722b3a
Fix a typo and a harmless compiler warning.
by mistachkin
· 6 years ago
8c754a3
Omit the "_except" term from the name of the new interface.
by drh
· 6 years ago
sqlite3_drop_modules_except
5df8428
The experimental sqlite3_drop_modules_except() interface.
by drh
· 6 years ago
5eae1d1
More legacy STAT3 code removed.
by drh
· 6 years ago
omit-stat3
Next »