• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1--
2-- Copyright 2019 The Android Open Source Project
3--
4-- Licensed under the Apache License, Version 2.0 (the "License");
5-- you may not use this file except in compliance with the License.
6-- You may obtain a copy of the License at
7--
8--     https://www.apache.org/licenses/LICENSE-2.0
9--
10-- Unless required by applicable law or agreed to in writing, software
11-- distributed under the License is distributed on an "AS IS" BASIS,
12-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-- See the License for the specific language governing permissions and
14-- limitations under the License.
15
16-- This metric will be deprecated soon. All of the tables have been
17-- migrated to SQL standard library and can be imported from:
18SELECT IMPORT('android.startup.startups');
19
20
21DROP VIEW IF EXISTS launches;
22CREATE VIEW launches AS
23SELECT startup_id AS launch_id, *, startup_type as launch_type FROM android_startups;
24
25DROP VIEW IF EXISTS launch_processes;
26CREATE VIEW launch_processes AS
27SELECT startup_id AS launch_id, * FROM android_startup_processes;
28
29DROP VIEW IF EXISTS launch_threads;
30CREATE VIEW launch_threads AS
31SELECT startup_id AS launch_id, * FROM android_startup_threads;
32
33DROP VIEW IF EXISTS launching_events;
34CREATE VIEW launching_events AS
35SELECT * FROM internal_startup_events;
36