Searched refs:execute (Results 1 - 25 of 1166) sorted by relevance

1234567891011>>

/external/autotest/frontend/migrations/
H A D013_new_test_fields.py2 manager.execute('ALTER TABLE jobs ADD run_verify tinyint(1) default 1')
3 manager.execute('ALTER TABLE autotests ADD author VARCHAR(256)')
4 manager.execute('ALTER TABLE autotests ADD dependencies VARCHAR(256)')
5 manager.execute('ALTER TABLE autotests ADD experimental SMALLINT DEFAULT 0')
6 manager.execute('ALTER TABLE autotests ADD run_verify SMALLINT DEFAULT 1')
7 manager.execute('ALTER TABLE autotests ADD test_time SMALLINT DEFAULT 1')
8 manager.execute('ALTER TABLE autotests ADD test_category VARCHAR(256)')
9 manager.execute('ALTER TABLE autotests ADD sync_count INT(11) DEFAULT 1')
13 manager.execute('ALTER TABLE jobs DROP run_verify')
14 manager.execute('ALTE
[all...]
H A D002_cleanup_fields.py2 manager.execute('ALTER TABLE autotests DROP params')
3 manager.execute('ALTER TABLE jobs DROP kernel_url, DROP status, '
5 manager.execute('ALTER TABLE host_queue_entries DROP created_on')
8 manager.execute('ALTER TABLE autotests ADD params VARCHAR(255)')
9 manager.execute('ALTER TABLE jobs ADD kernel_url VARCHAR(255), '
11 manager.execute('ALTER TABLE host_queue_entries ADD created_on '
H A D003_test_synch_type.py2 manager.execute('ALTER TABLE autotests ADD `synch_type` smallint '
5 manager.execute('UPDATE autotests SET synch_type=1')
9 manager.execute('ALTER TABLE autotests DROP `synch_type`')
H A D006_host_label_invalid.py2 manager.execute('ALTER TABLE hosts ADD `invalid` bool NOT NULL')
3 manager.execute('ALTER TABLE labels ADD `invalid` bool NOT NULL')
7 manager.execute('ALTER TABLE hosts DROP invalid')
8 manager.execute('ALTER TABLE labels DROP invalid')
H A D015_add_locked_by_and_lock_time.py2 manager.execute("""ALTER TABLE hosts
5 manager.execute("""ALTER TABLE hosts
11 manager.execute('ALTER TABLE hosts DROP COLUMN locked_by_id')
12 manager.execute('ALTER TABLE hosts DROP COLUMN lock_time')
H A D031_add_hqe_aborted_flag.py2 manager.execute('ALTER TABLE host_queue_entries '
4 manager.execute("UPDATE host_queue_entries SET aborted = true WHERE "
9 manager.execute("UPDATE host_queue_entries SET status = 'Abort' WHERE "
11 manager.execute('ALTER TABLE host_queue_entries DROP COLUMN `aborted`')
H A D005_one_more_index.py2 manger.execute('CREATE INDEX hosts_labels_host_id ON hosts_labels '
7 manger.execute('DROP INDEX hosts_labels_host_id ON hosts_labels')
H A D014_run_verify.py2 manager.execute('ALTER TABLE host_queue_entries ADD run_verify SMALLINT DEFAULT 1')
6 manager.execute('ALTER TABLE host_queue_entries DROP run_verify')
H A D016_remove_run_verify.py2 manager.execute('ALTER TABLE host_queue_entries DROP run_verify')
6 manager.execute('ALTER TABLE host_queue_entries ADD run_verify SMALLINT DEFAULT 1')
H A D029_add_atomic_group_invalid.py2 manager.execute('ALTER TABLE atomic_groups ADD `invalid` bool NOT NULL')
6 manager.execute('ALTER TABLE atomic_groups DROP invalid')
H A D030_update_hosts_invalid.py2 manager.execute("ALTER TABLE hosts MODIFY invalid TINYINT(1) DEFAULT 0")
6 manager.execute("ALTER TABLE hosts MODIFY invalid TINYINT(1) DEFAULT NULL")
H A D028_add_atomic_groups.py3 manager.execute("ALTER TABLE labels ADD `atomic_group_id` "
5 manager.execute("ALTER TABLE labels ADD CONSTRAINT FOREIGN KEY "
8 manager.execute("ALTER TABLE host_queue_entries ADD `atomic_group_id` "
10 manager.execute("ALTER TABLE host_queue_entries ADD CONSTRAINT FOREIGN KEY "
16 manager.execute("ALTER TABLE host_queue_entries REMOVE `atomic_group_id`")
17 manager.execute("ALTER TABLE labels REMOVE `atomic_group_id`")
18 manager.execute("DROP TABLE IF EXISTS `atomic_groups`")
H A D018_add_label_only_if_needed.py17 manager.execute('ALTER TABLE labels '
22 manager.execute('ALTER TABLE labels DROP COLUMN only_if_needed')
23 manager.execute('DROP TABLE IF EXISTS `autotests_dependency_labels`')
24 manager.execute('DROP TABLE IF EXISTS `jobs_dependency_labels`')
H A D019_add_abort_log.py2 manager.execute(CREATE_TABLE)
5 manager.execute("DROP TABLE IF EXISTS `aborted_host_queue_entries`")
/external/autotest/tko/migrations/
H A D022_widen_attribute_value_field.py2 mgr.execute("alter table test_attributes modify column value varchar(1024);")
3 mgr.execute("alter table iteration_attributes modify column value varchar(1024);")
6 mgr.execute("alter table test_attributes modify column value varchar(100);")
7 mgr.execute("alter table iteration_attributes modify column value varchar(100);")
H A D005_add_testna_status.py2 monger.execute("INSERT INTO status (word) values ('TEST_NA')")
6 monger.execute("DELETE FROM status where word = 'TEST_NA'")
H A D007_widen_reason_field.py2 mgr.execute("alter table tests modify column reason varchar(1024);")
5 mgr.execute("alter table tests modify column reason varchar(100);")
H A D012_add_running_status.py2 manager.execute("INSERT INTO status (word) values ('RUNNING')")
6 manager.execute("DELETE FROM status where word = 'RUNNING'")
H A D019_widen_test_name_field.py2 mgr.execute("alter table tests modify column test varchar(60);")
5 mgr.execute("alter table tests modify column test varchar(30);")
H A D020_widen_hostname_field.py2 mgr.execute("alter table machines modify column hostname varchar(700);")
5 mgr.execute("alter table machines modify column hostname varchar(100);")
H A D023_update_tests_invalid.py2 manager.execute("ALTER TABLE tests MODIFY invalid TINYINT(1) DEFAULT 0")
6 manager.execute("ALTER TABLE tests MODIFY invalid TINYINT(1) DEFAULT NULL")
H A D024_index_test_labels_tests_test_id.py2 manager.execute('CREATE INDEX test_labels_tests_test_id '
7 manager.execute('DROP INDEX test_labels_tests_test_id ON test_labels_tests')
/external/valgrind/none/tests/scripts/
H A Dshell_binaryfile.stderr.exp1 valgrind: ./shell_binaryfile: cannot execute binary file
/external/python/cpython2/Doc/includes/sqlite3/
H A Dctx_manager.py4 con.execute("create table person (id integer primary key, firstname varchar unique)")
8 con.execute("insert into person(firstname) values (?)", ("Joe",))
14 con.execute("insert into person(firstname) values (?)", ("Joe",))
/external/python/cpython3/Doc/includes/sqlite3/
H A Dctx_manager.py4 con.execute("create table person (id integer primary key, firstname varchar unique)")
8 con.execute("insert into person(firstname) values (?)", ("Joe",))
14 con.execute("insert into person(firstname) values (?)", ("Joe",))

Completed in 508 milliseconds

1234567891011>>