List:Commits« Previous MessageNext Message »
From:Hakan Kuecuekyilmaz Date:March 29 2007 6:27pm
Subject:bk commit into 5.1-falcon tree (hakank:1.2528)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1-falcon repository of hakan. When hakan does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2007-03-29 18:27:25+02:00, hakank@stripped +1 -0
  Fix for following failing test cases (tmp table related)
    - falcon_bug_22089
    - falcon_bug_22143
    - falcon_bug_24079
    - falcon_temporary_alter
  
  If tmpdir variable contained a -, then Database::compileStatement() failed
  and the tmp table could not be created.
  
  Fixed by escaping the schema name.

  storage/falcon/ha_falcon.cpp@stripped, 2007-03-29 18:27:13+02:00,
hakank@stripped +1 -1
    Fix for following failing test cases (tmp table related)
      - falcon_bug_22089
      - falcon_bug_22143
      - falcon_bug_24079
      - falcon_temporary_alter

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	hakank
# Host:	lu0008.wdf.sap.corp
# Root:	/home/hakan/work/mysql/mysql-5.1-falcon

--- 1.130/storage/falcon/ha_falcon.cpp	2007-03-29 18:27:40 +02:00
+++ 1.131/storage/falcon/ha_falcon.cpp	2007-03-29 18:27:40 +02:00
@@ -604,7 +604,7 @@ int NfsStorageTable::create(const char *
 	CmdGen gen;
 	const char *tableName = storageTable->getName();
 	const char *schemaName = storageTable->getSchemaName();
-	gen.gen("create table %s.\"%s\" (\n", schemaName, tableName);
+	gen.gen("create table \"%s\".\"%s\" (\n", schemaName, tableName);
 	const char *sep = "";
 	char nameBuffer[129];
 
Thread
bk commit into 5.1-falcon tree (hakank:1.2528)Hakan Kuecuekyilmaz29 Mar