You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/app/qgisapp.cpp
+23-15Lines changed: 23 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -1987,21 +1987,6 @@ bool QgisApp::createDB()
1987
1987
"is_geo integer NOT NULL,"
1988
1988
"deprecated boolean);"
1989
1989
"CREATE INDEX idx_srsauthid on tbl_srs(auth_name,auth_id);"
1990
-
"DROP VIEW vw_srs;"
1991
-
"CREATE VIEW vw_srs as "
1992
-
"select a.description as description,"
1993
-
"a.srs_id as srs_id,"
1994
-
"a.is_geo as is_geo,"
1995
-
"b.name as name,"
1996
-
"a.parameters as parameters,"
1997
-
"a.auth_name as auth_name,"
1998
-
"a.auth_id as auth_id,"
1999
-
"a.deprecated as deprecated"
2000
-
" from "
2001
-
"tbl_srs a inner join tbl_projection b on a.projection_acronym=b.acronym"
2002
-
" order by "
2003
-
"b.name,"
2004
-
"a.description;"
2005
1990
"INSERT INTO tbl_srs(srs_id,description,projection_acronym,ellipsoid_acronym,parameters,srid,auth_name,auth_id,is_geo,deprecated) SELECT srs_id,description,projection_acronym,ellipsoid_acronym,parameters,srid,'','',is_geo,0 FROM tbl_srs_bak;"
0 commit comments