HomeSort by relevance Sort by last modified time
    Searched refs:execute (Results 1 - 25 of 3681) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/frontend/migrations/
013_new_test_fields.py 2 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('ALTER TABLE autotests DROP sync_count'
    [all...]
002_cleanup_fields.py 2 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 '
006_host_label_invalid.py 2 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')
015_add_locked_by_and_lock_time.py 2 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')
031_add_hqe_aborted_flag.py 2 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`')
028_add_atomic_groups.py 3 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`")
003_test_synch_type.py 2 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`')
018_add_label_only_if_needed.py 17 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`')
005_one_more_index.py 2 manger.execute('CREATE INDEX hosts_labels_host_id ON hosts_labels '
7 manger.execute('DROP INDEX hosts_labels_host_id ON hosts_labels')
014_run_verify.py 2 manager.execute('ALTER TABLE host_queue_entries ADD run_verify SMALLINT DEFAULT 1')
6 manager.execute('ALTER TABLE host_queue_entries DROP run_verify')
016_remove_run_verify.py 2 manager.execute('ALTER TABLE host_queue_entries DROP run_verify')
6 manager.execute('ALTER TABLE host_queue_entries ADD run_verify SMALLINT DEFAULT 1')
029_add_atomic_group_invalid.py 2 manager.execute('ALTER TABLE atomic_groups ADD `invalid` bool NOT NULL')
6 manager.execute('ALTER TABLE atomic_groups DROP invalid')
030_update_hosts_invalid.py 2 manager.execute("ALTER TABLE hosts MODIFY invalid TINYINT(1) DEFAULT 0")
6 manager.execute("ALTER TABLE hosts MODIFY invalid TINYINT(1) DEFAULT NULL")
086_add_invalidates_test_idx_to_tko_tests.py 23 manager.execute(ADD_COLUMN)
24 manager.execute(ADD_INDEX)
25 manager.execute(ADD_FOREIGN_KEY)
34 manager.execute(DROP_FOREIGN_KEY)
35 manager.execute(DROP_COLUMN)
017_add_email_list.py 2 manager.execute(ADD_COLUMN)
5 manager.execute(DROP_COLUMN)
  /external/autotest/tko/migrations/
022_widen_attribute_value_field.py 2 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);")
005_add_testna_status.py 2 monger.execute("INSERT INTO status (word) values ('TEST_NA')")
6 monger.execute("DELETE FROM status where word = 'TEST_NA'")
007_widen_reason_field.py 2 mgr.execute("alter table tests modify column reason varchar(1024);")
5 mgr.execute("alter table tests modify column reason varchar(100);")
012_add_running_status.py 2 manager.execute("INSERT INTO status (word) values ('RUNNING')")
6 manager.execute("DELETE FROM status where word = 'RUNNING'")
019_widen_test_name_field.py 2 mgr.execute("alter table tests modify column test varchar(60);")
5 mgr.execute("alter table tests modify column test varchar(30);")
020_widen_hostname_field.py 2 mgr.execute("alter table machines modify column hostname varchar(700);")
5 mgr.execute("alter table machines modify column hostname varchar(100);")
023_update_tests_invalid.py 2 manager.execute("ALTER TABLE tests MODIFY invalid TINYINT(1) DEFAULT 0")
6 manager.execute("ALTER TABLE tests MODIFY invalid TINYINT(1) DEFAULT NULL")
024_index_test_labels_tests_test_id.py 2 manager.execute('CREATE INDEX test_labels_tests_test_id '
7 manager.execute('DROP INDEX test_labels_tests_test_id ON test_labels_tests')
015_support_graphing_interface.py 2 manager.execute(CREATE_QUERIES_TABLE)
3 manager.execute(CREATE_TEST_VIEW_OUTER_JOINS)
4 manager.execute(CREATE_PERF_VIEW_2)
7 manager.execute(DROP_QUERIES_TABLE)
8 manager.execute(DROP_TEST_VIEW_OUTER_JOINS)
9 manager.execute(DROP_PERF_VIEW_2)
  /external/valgrind/none/tests/scripts/
shell_binaryfile.stderr.exp 1 valgrind: ./shell_binaryfile: cannot execute binary file

Completed in 123 milliseconds

1 2 3 4 5 6 7 8 91011>>