Author: pburba
Date: Wed Jun 27 14:53:38 2012
New Revision: 1354556
URL: http://svn.apache.org/viewvc?rev=1354556&view=rev
Log:
On the inheritable-props branch: Rename statement to create iprop table to
be consistent with existing naming scheme.
* subversion/libsvn_wc/wc-metadata.sql (STMT_INHERITABLE_PROPS)
* subversion/libsvn_wc/wc_db.c (create_db)
* subversion/tests/libsvn_wc/wc-queries-test.c (schema_statements)
Rename STMT_INHERITABLE_PROPS to STMT_CREATE_INHERITABLE_PROPS.
Modified:
subversion/branches/inheritable-props/subversion/libsvn_wc/wc-metadata.sql
subversion/branches/inheritable-props/subversion/libsvn_wc/wc_db.c
subversion/branches/inheritable-props/subversion/tests/libsvn_wc/wc-queries-test.c
Modified:
subversion/branches/inheritable-props/subversion/libsvn_wc/wc-metadata.sql
URL:
http://svn.apache.org/viewvc/subversion/branches/inheritable-props/subversion/libsvn_wc/wc-metadata.sql?rev=1354556&r1=1354555&r2=1354556&view=diff
==============================================================================
--- subversion/branches/inheritable-props/subversion/libsvn_wc/wc-metadata.sql
(original)
+++ subversion/branches/inheritable-props/subversion/libsvn_wc/wc-metadata.sql
Wed Jun 27 14:53:38 2012
@@ -586,7 +586,7 @@ CREATE UNIQUE INDEX I_EXTERNALS_DEFINED
then no row exists.
*/
--- STMT_INHERITABLE_PROPS
+-- STMT_CREATE_INHERITABLE_PROPS
CREATE TABLE INHERITABLE_PROPS (
wc_id INTEGER NOT NULL,
Modified: subversion/branches/inheritable-props/subversion/libsvn_wc/wc_db.c
URL:
http://svn.apache.org/viewvc/subversion/branches/inheritable-props/subversion/libsvn_wc/wc_db.c?rev=1354556&r1=1354555&r2=1354556&view=diff
==============================================================================
--- subversion/branches/inheritable-props/subversion/libsvn_wc/wc_db.c
(original)
+++ subversion/branches/inheritable-props/subversion/libsvn_wc/wc_db.c Wed Jun
27 14:53:38 2012
@@ -1448,7 +1448,7 @@ create_db(svn_sqlite__db_t **sdb,
idb.root_node_repos_relpath = root_node_repos_relpath;
idb.root_node_revision = root_node_revision;
idb.root_node_depth = root_node_depth;
- SVN_ERR(svn_sqlite__exec_statements(*sdb, STMT_INHERITABLE_PROPS));
+ SVN_ERR(svn_sqlite__exec_statements(*sdb, STMT_CREATE_INHERITABLE_PROPS));
SVN_ERR(svn_sqlite__with_lock(*sdb, init_db, &idb, scratch_pool));
Modified:
subversion/branches/inheritable-props/subversion/tests/libsvn_wc/wc-queries-test.c
URL:
http://svn.apache.org/viewvc/subversion/branches/inheritable-props/subversion/tests/libsvn_wc/wc-queries-test.c?rev=1354556&r1=1354555&r2=1354556&view=diff
==============================================================================
---
subversion/branches/inheritable-props/subversion/tests/libsvn_wc/wc-queries-test.c
(original)
+++
subversion/branches/inheritable-props/subversion/tests/libsvn_wc/wc-queries-test.c
Wed Jun 27 14:53:38 2012
@@ -66,7 +66,7 @@ static const int schema_statements[] =
STMT_CREATE_NODES,
STMT_CREATE_NODES_TRIGGERS,
STMT_CREATE_EXTERNALS,
- STMT_INHERITABLE_PROPS,
+ STMT_CREATE_INHERITABLE_PROPS,
/* Memory tables */
STMT_CREATE_TARGETS_LIST,
STMT_CREATE_CHANGELIST_LIST,