Lines Matching refs:isView
10866 SQLITE_PRIVATE Table *sqlite3LocateTable(Parse*,int isView,const char*, const char*);
75143 int isView, /* True if looking for a VIEW rather than a TABLE */
75157 const char *zMsg = isView ? "no such view" : "no such table";
75549 int isView, /* True if this is a VIEW */
75602 if( isView ){
75718 if( isView || isVirtual ){
76798 SQLITE_PRIVATE void sqlite3DropTable(Parse *pParse, SrcList *pName, int isView, int noErr){
76810 pTab = sqlite3LocateTable(pParse, isView,
76835 if( isView ){
76870 if( isView && pTab->pSelect==0 ){
76874 if( !isView && pTab->pSelect ){
76940 if( !isView && !IsVirtual(pTab) ){
79233 int isView; /* True if attempting to delete from a view */
79257 isView = pTab->pSelect!=0;
79260 # define isView 0
79263 # undef isView
79264 # define isView 0
79284 assert(!isView || pTrigger);
79296 if( isView ){
79313 if( isView ){
79343 assert( !isView );
79381 if( !isView ){
79406 if( !isView && !IsVirtual(pTab) ){
79438 /* Make sure "isView" and other macros defined above are undefined. Otherwise
79441 #ifdef isView
79442 #undef isView
82894 int isView; /* True if attempting to insert into a view */
82927 isView = pTab->pSelect!=0;
82931 # define isView 0
82934 # undef isView
82935 # define isView 0
83174 if( !isView ){
83285 if( !isView ){
83302 if( !isView ){
83433 if( !IsVirtual(pTab) && !isView ){
83469 /* Make sure "isView" and other macros defined above are undefined. Otherwise
83472 #ifdef isView
83473 #undef isView
93682 int isView; /* True when updating a view (INSTEAD OF trigger) */
93715 isView = pTab->pSelect!=0;
93719 # define isView 0
93723 # undef isView
93724 # define isView 0
93856 if( isView ){
93864 if( isView ){
93902 if( !isView ){
94041 if( !isView ){
94129 /* Make sure "isView" and other macros defined above are undefined. Otherwise
94132 #ifdef isView
94133 #undef isView