From: John Darrington Date: Tue, 23 Aug 2016 19:41:13 +0000 (+0200) Subject: PSQL READER: Use the REPEATABLE READ isolation level. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2cccb3d44c3ab86070127d72760a997214d391c7;p=pspp PSQL READER: Use the REPEATABLE READ isolation level. Apparently SERIALIZABLE doesn't work if the server is in "hot standby" mode. --- diff --git a/src/data/psql-reader.c b/src/data/psql-reader.c index 630a720711..a8eb91ef7c 100644 --- a/src/data/psql-reader.c +++ b/src/data/psql-reader.c @@ -252,7 +252,7 @@ psql_open_reader (struct psql_read_info *info, struct dictionary **dict) } { - int ver_num; + int ver_num = 0; const char *vers = PQparameterStatus (r->conn, "server_version"); sscanf (vers, "%d", &ver_num); @@ -303,12 +303,17 @@ psql_open_reader (struct psql_read_info *info, struct dictionary **dict) *dict = r->dict = dict_create (encoding); } + const int version = PQserverVersion (r->conn); + ds_init_empty (&query); /* - select count (*) from (select * from medium) stupid_sql_standard; - */ - ds_init_cstr (&query, - "BEGIN READ ONLY ISOLATION LEVEL SERIALIZABLE; " - "DECLARE pspp BINARY CURSOR FOR "); + Versions before 9.1 don't have the REPEATABLE READ isolation level. + However according to if the server is in the + "hot standby" mode then SERIALIZABLE won't work. + */ + ds_put_c_format (&query, + "BEGIN READ ONLY ISOLATION LEVEL %s; " + "DECLARE pspp BINARY CURSOR FOR ", + (version < 90100) ? "SERIALIZABLE" : "REPEATABLE READ"); ds_put_substring (&query, info->sql.ss);