• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/sqlite3/

Lines Matching refs:DROP

9917 ** <b>The "DROP TABLE" Exception</b>
9921 ** one exception. When executing a "DROP TABLE" or "DROP INDEX" statement,
9926 ** invoked immediately. If the application then re-attempts the "DROP TABLE"
9927 ** or "DROP INDEX" query, an infinite loop might be the result.
9932 ** the special "DROP TABLE/INDEX" case, the extended error code is just
17010 unsigned bDropColumn : 1; /* Doing schema check after DROP COLUMN */
19216 #define INITFLAG_AlterDrop 0x0002 /* Reparse after a DROP COLUMN */
48922 ** But sometimes (for example when during a DROP of a large table) most
99211 ** sanity check following a DROP COLUMN if the identifer name matches
108621 ** ALTER TABLE pSrc DROP COLUMN pName
111596 ** DROP TABLE
111598 ** DROP INDEX
114613 ** after a DROP INDEX or DROP TABLE command.
114739 ** This routine is called to do the work of a DROP TABLE statement.
114813 /* Ensure DROP TABLE is not used on a view, and DROP VIEW is not used
114817 sqlite3ErrorMsg(pParse, "use DROP TABLE to delete table %s", pTab->zName);
114821 sqlite3ErrorMsg(pParse, "use DROP VIEW to delete view %s", pTab->zName);
115826 ** implements the DROP INDEX statement.
142851 ** when a DROP TABLE is mentioned.
143173 ** instances always exist. They cannot be DROP-ed.
158324 0, /* DROP => nothing */
158595 /* 132 */ "DROP",
158863 /* 77 */ "cmd ::= DROP TABLE ifexists fullname",
158867 /* 81 */ "cmd ::= DROP VIEW ifexists fullname",
159027 /* 241 */ "cmd ::= DROP INDEX ifexists fullname",
159063 /* 277 */ "cmd ::= DROP TRIGGER ifexists fullname",
159074 /* 288 */ "cmd ::= ALTER TABLE fullname DROP kwcolumn_opt nm",
159769 188, /* (77) cmd ::= DROP TABLE ifexists fullname */
159773 188, /* (81) cmd ::= DROP VIEW ifexists fullname */
159933 188, /* (241) cmd ::= DROP INDEX ifexists fullname */
159969 188, /* (277) cmd ::= DROP TRIGGER ifexists fullname */
159980 188, /* (288) cmd ::= ALTER TABLE fullname DROP kwcolumn_opt nm */
160172 -4, /* (77) cmd ::= DROP TABLE ifexists fullname */
160176 -4, /* (81) cmd ::= DROP VIEW ifexists fullname */
160336 -4, /* (241) cmd ::= DROP INDEX ifexists fullname */
160372 -4, /* (277) cmd ::= DROP TRIGGER ifexists fullname */
160383 -6, /* (288) cmd ::= ALTER TABLE fullname DROP kwcolumn_opt nm */
160795 case 77: /* cmd ::= DROP TABLE ifexists fullname */
160805 case 81: /* cmd ::= DROP VIEW ifexists fullname */
161536 case 241: /* cmd ::= DROP INDEX ifexists fullname */
161673 case 277: /* cmd ::= DROP TRIGGER ifexists fullname */
161711 case 288: /* cmd ::= ALTER TABLE fullname DROP kwcolumn_opt nm */
162700 ** 69: DISTINCT DROP KEY
162886 testcase( i==103 ); /* DROP */
170607 "DROP TABLE IF EXISTS %Q.'%q_segments';"
170608 "DROP TABLE IF EXISTS %Q.'%q_segdir';"
170609 "DROP TABLE IF EXISTS %Q.'%q_docsize';"
170610 "DROP TABLE IF EXISTS %Q.'%q_stat';"
170611 "%s DROP TABLE IF EXISTS %Q.'%q_content';",
192239 "DROP TABLE '%q'.'%q_node';"
192240 "DROP TABLE '%q'.'%q_rowid';"
192241 "DROP TABLE '%q'.'%q_parent';",
194574 ** DROP TABLE command - which fortunately always opens a savepoint - cannot
194580 ** DROP TABLE <tablename>; -- Would fail with SQLITE_LOCKED
199852 "DROP TRIGGER IF EXISTS temp.rbu_insert_tr;"
199853 "DROP TRIGGER IF EXISTS temp.rbu_update1_tr;"
199854 "DROP TRIGGER IF EXISTS temp.rbu_update2_tr;"
199855 "DROP TRIGGER IF EXISTS temp.rbu_delete_tr;"
229627 "DROP TABLE IF EXISTS %Q.'%q_data';"
229628 "DROP TABLE IF EXISTS %Q.'%q_idx';"
229629 "DROP TABLE IF EXISTS %Q.'%q_config';",
229636 "DROP TABLE IF EXISTS %Q.'%q_docsize';",
229642 "DROP TABLE IF EXISTS %Q.'%q_content';",