ports/lang/hiphop-php/files/patch-hphp-runtime-vm-repo.cpp
Martin Matuska 3ce92d01b0 Fix embedding of systemlib.php [1]
Fix repository creation [1]
Add docs, reduce dependencies

Submitted by:	Vanilla Hsu [1]
2013-07-22 20:18:42 +00:00

11 lines
413 B
C++

--- hphp/runtime/vm/repo.cpp.orig 2013-07-22 20:34:07.689418184 +0200
+++ hphp/runtime/vm/repo.cpp 2013-07-22 20:34:29.924423584 +0200
@@ -216,7 +216,7 @@
std::string Repo::table(int repoId, const char* tablePrefix) {
std::stringstream ss;
- ss << dbName(repoId) << "." << tablePrefix << "_" << kRepoSchemaId;
+ ss << dbName(repoId) << "_" << tablePrefix << "_" << kRepoSchemaId;
return ss.str();
}