mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 13:46:00 +00:00
oracle tests WIP
This commit is contained in:
@@ -1,13 +1,10 @@
|
||||
module.exports = `
|
||||
select avv.*,
|
||||
ora_hash("create_sql") as "hash_code"
|
||||
select avv.*
|
||||
from (select
|
||||
view_name as "pure_name",
|
||||
-- owner as "schema_name",
|
||||
-- SUBSTR(text_vc, 1, 3900) AS "create_sql"
|
||||
text as "create_sql"
|
||||
from all_views av
|
||||
where owner = '$owner' and text is not null
|
||||
where owner = 'C##test' and text is not null
|
||||
) avv
|
||||
where 'views:' || "pure_name" =OBJECT_ID_CONDITION
|
||||
where 'views:' || "pure_name" is not null
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user