Remove non-ASCII-representable characters to fix py35-old tests.

This commit is contained in:
Olivier Wilkinson (reivilibre) 2019-08-14 10:39:38 +01:00
parent 703f9ff3c9
commit c9646770d1
2 changed files with 4 additions and 4 deletions

View file

@ -67,7 +67,7 @@ INSERT INTO stats_incremental_position (
CREATE TABLE IF NOT EXISTS room_stats_current ( CREATE TABLE IF NOT EXISTS room_stats_current (
room_id TEXT NOT NULL PRIMARY KEY, room_id TEXT NOT NULL PRIMARY KEY,
-- These starts cover the time from start_tsend_ts (in seconds). -- These starts cover the time from start_ts...end_ts (in seconds).
-- Note that end_ts is quantised, and start_ts usually so. -- Note that end_ts is quantised, and start_ts usually so.
start_ts BIGINT, start_ts BIGINT,
end_ts BIGINT, end_ts BIGINT,
@ -91,7 +91,7 @@ CREATE TABLE IF NOT EXISTS room_stats_current (
-- represents HISTORICAL room statistics for a room -- represents HISTORICAL room statistics for a room
CREATE TABLE IF NOT EXISTS room_stats_historical ( CREATE TABLE IF NOT EXISTS room_stats_historical (
room_id TEXT NOT NULL, room_id TEXT NOT NULL,
-- These starts cover the time from (end_ts - bucket_size)…end_ts (in seconds). -- These stats cover the time from (end_ts - bucket_size)...end_ts (in seconds).
-- Note that end_ts is quantised, and start_ts usually so. -- Note that end_ts is quantised, and start_ts usually so.
end_ts BIGINT NOT NULL, end_ts BIGINT NOT NULL,
bucket_size INT NOT NULL, bucket_size INT NOT NULL,

View file

@ -22,7 +22,7 @@ def _run_create_generic(stats_type, cursor, database_engine):
""" """
Creates the pertinent (partial, if supported) indices for one kind of stats. Creates the pertinent (partial, if supported) indices for one kind of stats.
Args: Args:
stats_type: "room" or "user" the type of stats stats_type: "room" or "user" - the type of stats
cursor: Database Cursor cursor: Database Cursor
database_engine: Database Engine database_engine: Database Engine
""" """
@ -72,7 +72,7 @@ def _run_create_generic(stats_type, cursor, database_engine):
def run_create(cursor, database_engine): def run_create(cursor, database_engine):
""" """
This function is called as part of the schema delta. This function is called as part of the schema delta.
It will create indices partial, if supported for the new 'separated' It will create indices - partial, if supported - for the new 'separated'
room & user statistics. room & user statistics.
""" """
_run_create_generic("room", cursor, database_engine) _run_create_generic("room", cursor, database_engine)