diff options
author | Yorick Peterse <yorickpeterse@gmail.com> | 2017-07-11 11:05:02 +0000 |
---|---|---|
committer | Yorick Peterse <yorickpeterse@gmail.com> | 2017-07-11 11:05:02 +0000 |
commit | 655219e24a3043c19582808e02b20dd4feddb449 (patch) | |
tree | 02d1fca123e85a0dbd81d79beb684f7ed746573e | |
parent | c9e3c3fdd6592d3bb975629b887d92e8b2f9a455 (diff) | |
parent | f92a12c265608e4907e3cfde2ba878b59668dc19 (diff) | |
download | gitlab-ce-655219e24a3043c19582808e02b20dd4feddb449.tar.gz |
Merge branch 'sh-disabled-prepared-statements-in-test' into 'master'
Disabled prepared statements in test
See merge request !12773
-rw-r--r-- | config/database.yml.mysql | 1 | ||||
-rw-r--r-- | config/database.yml.postgresql | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/config/database.yml.mysql b/config/database.yml.mysql index db1b712d3bc..eb71d3f5fe1 100644 --- a/config/database.yml.mysql +++ b/config/database.yml.mysql @@ -42,3 +42,4 @@ test: &test password: # host: localhost # socket: /tmp/mysql.sock + prepared_statements: false diff --git a/config/database.yml.postgresql b/config/database.yml.postgresql index c517a4c0cb8..4b30982fe82 100644 --- a/config/database.yml.postgresql +++ b/config/database.yml.postgresql @@ -46,3 +46,4 @@ test: &test username: postgres password: # host: localhost + prepared_statements: false |