index
:
sqlite
master
sqlite mirror
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
alter.c
Commit message (
Expand
)
Author
Age
*
Always ignore comments in the schema of a database, even if
drh
2025-03-05
*
Tamp down various harmless compiler warnings. Use "int" in places instead
drh
2025-02-22
*
Fix an incorrect assert added by [d7729dbbf231d57c].
drh
2025-02-22
*
Detect when a UNIQUE or PRIMARY KEY on a WITHOUT ROWID table would need
drh
2025-02-21
*
Use the sqlite3ColumnIndex() routine to look up a column in a table, rather
drh
2025-02-08
*
Refactor the SrcItem object so that information about subqueries is stored
drh
2024-08-19
*
Give unique names to fields in the SrcItem object, to facilitate analysis of
drh
2024-08-17
*
Fix another instance where ALTER TABLE was returning SQLITE_INTERNAL instead
drh
2024-08-09
*
Avoid expanding integer values in columns with real affinity to the full 8-by...
dan
2024-03-26
*
Do not allow an ALTER TABLE ADD COLUMN on a STRICT table if the added column
drh
2023-10-14
*
Address various harmless compiler warnings from
drh
2023-06-16
*
Add a C-source spell-checking facility. make misspell (on Nix)
larrybr
2023-06-07
*
Fix an obscure issue with ALTER TABLE RENAME that comes up with triggers
drh
2023-04-13
*
Additional fixes for yet more completely harmless compiler warnings.
drh
2022-12-23
*
Minor simplification to ALTER TABLE logic.
drh
2022-05-27
*
Fix another problem with ALTER TABLE and UPDATE...FROM in triggers.
dan
2022-05-27
*
Fix further issues with ALTER TABLE and triggers that contain UPDATE..FROM st...
dan
2022-05-27
*
Omit an unnecessary branch.
drh
2022-05-27
*
Fix issues with ALTER TABLE and triggers containing "UPDATE...FROM" statements.
dan
2022-05-26
*
Organize the various flag bits of the ExprList_item object into a substructure
drh
2022-05-02
*
Improved technique for parsing the ON and USING clauses of a join is faster
drh
2022-04-07
*
Stronger defenses against corrupt schemas in the ALTER TABLE logic.
drh
2022-03-10
*
Provide sqlite3_error_offset() data for some new errors.
drh
2022-02-08
*
With the new ALTER TABLE under PRAGMA writable_schema=ON processing, do not
drh
2022-02-06
*
Fix a NULL pointer dereference that can occur after OOM. Problem
drh
2022-02-05
*
One more case of disabling errors for ALTER TABLE RENAME when
drh
2022-02-04
*
Allow ALTER TABLE RENAME COLUMN to proceed even if there are errors in
drh
2022-02-04
*
Remove many redundant checks for sqlite3.mallocFailed now that any OOM should
drh
2022-01-24
*
Make it so that any Parse object is always linked into the database conenction
drh
2022-01-24
*
Fix ALTER TABLE DROP COLUMN so that it invokes the authorizer. Fix for
drh
2022-01-18
*
Fix ALTER TABLE so that it works even when compiled using -DSQLITE_DQS=0.
drh
2022-01-16
*
Simplify the sqlite3RunParser() routine by omitting the third parameter.
drh
2021-12-31
*
Show the preferred schema table names in the output of "PRAGMA table_list".
drh
2021-11-04
*
Improved the error message that results when a schema parse fails after
drh
2021-11-03
*
Ensure that ALTER TABLE RENAME recognizes OOM errors while parsing
drh
2021-11-02
*
Remove an incorrect assert() added 4 days ago by check-in [9e2f06b84f994277].
drh
2021-10-17
*
Remove a NEVER() macro in ALTER TABLE due to an
drh
2021-10-13
*
Protect access to the Expr.y union using nearby assert()s and branches.
drh
2021-10-07
*
Protect every access to the Table.u union using a nearby assert() or branch.
drh
2021-10-07
*
Add NEVER() macros on branches that are not reachable since [a0df216f7c3f8963].
drh
2021-09-29
*
Fix a potential ALTER TABLE problem with expressions like ( (<sub-select>) IN...
dan
2021-09-28
*
Fix a problem in ALTER TABLE causing table or column references in sub-select...
dan
2021-09-27
*
Add lots of new "const" on internal function parameters. There is opportunity
drh
2021-09-24
*
For ALTER TABLE RENAME COLUMN, do not try to filter virtual tables out of
drh
2021-09-16
*
Store the collating sequence name for each column of a table as an
drh
2021-08-05
*
Always prefer built-in SQL functions over app-defined SQL functions within
drh
2021-08-04
*
Refactor field names in the Column object, zCnName and zCnColl, to make them
drh
2021-08-02
*
Refactor the Table object to reduce its memory footprint.
drh
2021-08-02
*
Refactor the way that DEFAULT expressions are stored on columns, in order
drh
2021-07-31
*
Fix ALTER TABLE DROP COLUMN so that it generates valid bytecode even when
drh
2021-07-22
[next]