diff options
Diffstat (limited to 'lang/hiphop-php/files/patch-hphp-runtime-vm-repo.cpp')
-rw-r--r-- | lang/hiphop-php/files/patch-hphp-runtime-vm-repo.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/hiphop-php/files/patch-hphp-runtime-vm-repo.cpp b/lang/hiphop-php/files/patch-hphp-runtime-vm-repo.cpp new file mode 100644 index 000000000000..b8b14698e339 --- /dev/null +++ b/lang/hiphop-php/files/patch-hphp-runtime-vm-repo.cpp @@ -0,0 +1,11 @@ +--- 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(); + } + |