mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Remove the blob(), text() and numeric() functions added in (2524) and
replace them with the standard CAST operator. Ticket #1287. (CVS 2527) FossilOrigin-Name: 17631785f9ee8ab280c82677eb53886912e085bc
This commit is contained in:
@ -95,6 +95,11 @@ struct Keyword {
|
||||
#else
|
||||
# define VIEW 16384
|
||||
#endif
|
||||
#ifdef SQLITE_OMIT_CAST
|
||||
# define CAST 0
|
||||
#else
|
||||
# define CAST 32768
|
||||
#endif
|
||||
|
||||
|
||||
/*
|
||||
@ -117,6 +122,7 @@ static Keyword aKeywordTable[] = {
|
||||
{ "BY", "TK_BY", ALWAYS },
|
||||
{ "CASCADE", "TK_CASCADE", FKEY },
|
||||
{ "CASE", "TK_CASE", ALWAYS },
|
||||
{ "CAST", "TK_CAST", CAST },
|
||||
{ "CHECK", "TK_CHECK", ALWAYS },
|
||||
{ "COLLATE", "TK_COLLATE", ALWAYS },
|
||||
{ "COLUMN", "TK_COLUMNKW", ALTER },
|
||||
|
Reference in New Issue
Block a user