コード例 #1
0
def test_timing_buffers_conflicts(config):
    """test when caller requests timing and buffers but counterpart turned off its"""

    acon, = common.n_async_connect(config)
    query = 'select count(*) from foo join bar on foo.c1=bar.c1'
    timing_pattern = '(?:running time=\d+.\d+)|(?:actual time=\d+.\d+..\d+.\d+)'
    buffers_pattern = 'Buffers:'

    qs, notices = common.onetime_query_state(config, acon, query, {
        'timing': True,
        'buffers': False
    })
    assert len(qs) == 1 and not re.search(timing_pattern, qs[0][3])
    assert notices == ['WARNING:  timing statistics disabled\n']

    qs, notices = common.onetime_query_state(config, acon, query, {
        'timing': False,
        'buffers': True
    })
    assert len(qs) == 1 and not re.search(buffers_pattern, qs[0][3])
    assert notices == ['WARNING:  buffers statistics disabled\n']

    qs, notices = common.onetime_query_state(config, acon, query, {
        'timing': True,
        'buffers': True
    })
    assert len(qs) == 1 and not re.search(timing_pattern, qs[0][3]) \
          and not re.search(buffers_pattern, qs[0][3])
    assert len(notices) == 2 and 'WARNING:  timing statistics disabled\n' in notices \
           and 'WARNING:  buffers statistics disabled\n' in notices

    common.n_close((acon, ))
コード例 #2
0
def test_trigger(config):
    """test trigger statistics"""

    acon, = common.n_async_connect(config)
    acurs = acon.cursor()
    util_conn = psycopg2.connect(**config)
    util_curs = util_conn.cursor()
    create_trigger_function = """
		create or replace function unique_c1_in_foo() returns trigger as $$
			begin
				if new.c1 in (select c1 from foo) then
					return null;
				end if;
				return new;
			end;
		$$ language plpgsql"""
    create_trigger = """
		create trigger unique_foo_c1
			before insert or update of c1 on foo for row
			execute procedure unique_c1_in_foo()"""
    drop_temps = 'drop function unique_c1_in_foo() cascade'
    query = 'insert into foo select i, md5(random()::text) from generate_series(1, 10000) as i'
    expected_upper = r"""Insert on foo \(Current loop: actual rows=\d+, loop number=1\)
  ->  Function Scan on generate_series i \(Current loop: actual rows=\d+, loop number=1\)"""
    trigger_suffix = r"""Trigger unique_foo_c1: calls=\d+"""

    util_curs.execute(create_trigger_function)
    util_curs.execute(create_trigger)
    util_conn.commit()

    qs, notices = common.onetime_query_state(config, acon, query,
                                             {'triggers': True})
    assert qs[0][0] == acon.get_backend_pid() and qs[0][1] == 0 \
     and qs[0][2] == query and re.match(expected_upper, qs[0][3]) \
     and qs[0][4] == None
    assert len(notices) == 0

    qs, notices = common.onetime_query_state(config, acon, query,
                                             {'triggers': False})
    assert qs[0][0] == acon.get_backend_pid() and qs[0][1] == 0 \
     and qs[0][2] == query and re.match(expected_upper, qs[0][3]) \
     and qs[0][4] == None
    assert len(notices) == 0

    util_curs.execute(drop_temps)

    util_conn.close()
    common.n_close((acon, ))
コード例 #3
0
def test_formats(config):
    """test all formats of pg_query_state output"""

    acon, = common.n_async_connect(config)
    query = 'select count(*) from foo join bar on foo.c1=bar.c1'
    expected = r"""Aggregate \(Current loop: actual rows=0, loop number=1\)
  ->  Hash Join \(Current loop: actual rows=0, loop number=1\)
        Hash Cond: \(foo.c1 = bar.c1\)
        ->  Seq Scan on foo \(Current loop: actual rows=1, loop number=1\)
        ->  Hash \(Current loop: actual rows=0, loop number=1\)
              Buckets: \d+  Batches: \d+  Memory Usage: \d+kB
              ->  Seq Scan on bar \(Current loop: actual rows=\d+, loop number=1\)"""

    qs, notices = common.onetime_query_state(config, acon, query,
                                             {'format': 'text'})
    assert len(qs) == 1 and re.match(expected, qs[0][3])
    assert len(notices) == 0

    qs, notices = common.onetime_query_state(config, acon, query,
                                             {'format': 'json'})
    try:
        js_obj = json.loads(qs[0][3])
    except ValueError:
        assert False, 'Invalid json format'
    assert len(qs) == 1
    assert len(notices) == 0
    check_plan(js_obj['Plan'])

    qs, notices = common.onetime_query_state(config, acon, query,
                                             {'format': 'xml'})
    assert len(qs) == 1
    assert len(notices) == 0
    try:
        xml_root = ET.fromstring(qs[0][3])
    except:
        assert False, 'Invalid xml format'
    check_xml(xml_root)

    qs, _ = common.onetime_query_state(config, acon, query, {'format': 'yaml'})
    try:
        yaml_doc = yaml.load(qs[0][3], Loader=yaml.FullLoader)
    except:
        assert False, 'Invalid yaml format'
    assert len(qs) == 1
    assert len(notices) == 0
    check_plan(yaml_doc['Plan'])

    common.n_close((acon, ))
コード例 #4
0
def test_insert_on_conflict(config):
    """test statistics on conflicting tuples under INSERT ON CONFLICT query"""

    acon, = common.n_async_connect(config)
    util_conn = psycopg2.connect(**config)
    util_curs = util_conn.cursor()
    add_field_uniqueness = 'alter table foo add constraint unique_c1 unique(c1)'
    drop_field_uniqueness = 'alter table foo drop constraint unique_c1'
    query = 'insert into foo select i, md5(random()::text) from generate_series(1, 30000) as i on conflict do nothing'

    expected = r"""Insert on foo \(Current loop: actual rows=\d+, loop number=\d+\)
  Conflict Resolution: NOTHING
  Conflicting Tuples: \d+
  ->  Function Scan on generate_series i \(Current loop: actual rows=\d+, loop number=\d+\)"""

    util_curs.execute(add_field_uniqueness)
    util_conn.commit()

    qs, notices = common.onetime_query_state(config, acon, query)

    assert qs[0][0] == acon.get_backend_pid() and qs[0][1] == 0 \
     and qs[0][2] == query and re.match(expected, qs[0][3]) \
     and qs[0][4] == None
    assert len(notices) == 0

    util_curs.execute(drop_field_uniqueness)

    util_conn.close()
    common.n_close((acon, ))
コード例 #5
0
def test_simple_query(config):
	"""test statistics of simple query"""

	acon, = common.n_async_connect(config)
	query = 'select count(*) from foo join bar on foo.c1=bar.c1'
	expected = r"""Aggregate \(Current loop: actual rows=\d+, loop number=1\)
  ->  Hash Join \(Current loop: actual rows=\d+, loop number=1\)
        Hash Cond: \(foo.c1 = bar.c1\)
        ->  Seq Scan on foo \(Current loop: actual rows=\d+, loop number=1\)
        ->  Hash \(Current loop: actual rows=\d+, loop number=1\)
              Buckets: \d+  Batches: \d+  Memory Usage: \d+kB
              ->  Seq Scan on bar \(Current loop: actual rows=\d+, loop number=1\)"""

	qs, _ = common.onetime_query_state(config, acon, query)
	assert qs[0][0] == acon.get_backend_pid() and qs[0][1] == 0 \
		and qs[0][2] == query and re.match(expected, qs[0][3]) and qs[0][4] == None

	common.n_close((acon,))
コード例 #6
0
def test_costs(config):
	"""test plan costs"""

	acon, = common.n_async_connect(config)
	query = 'select count(*) from foo join bar on foo.c1=bar.c1'
	expected = r"""Aggregate  \(cost=\d+.\d+..\d+.\d+ rows=\d+ width=8\) \(Current loop: actual rows=0, loop number=1\)
  ->  Hash Join  \(cost=\d+.\d+..\d+.\d+ rows=\d+ width=0\) \(Current loop: actual rows=0, loop number=1\)
        Hash Cond: \(foo.c1 = bar.c1\)
        ->  Seq Scan on foo  \(cost=0.00..\d+.\d+ rows=\d+ width=4\) \(Current loop: actual rows=1, loop number=1\)
        ->  Hash  \(cost=\d+.\d+..\d+.\d+ rows=\d+ width=4\) \(Current loop: actual rows=0, loop number=1\)
              Buckets: \d+  Batches: \d+  Memory Usage: \d+kB
              ->  Seq Scan on bar  \(cost=0.00..\d+.\d+ rows=\d+ width=4\) \(Current loop: actual rows=\d+, loop number=1\)"""

	qs, notices = common.onetime_query_state(config, acon, query, {'costs': True})
	assert len(qs) == 1 and re.match(expected, qs[0][3])
	assert len(notices) == 0

	common.n_close((acon,))
コード例 #7
0
def test_nested_call(config):
	"""test statistics under calling function"""

	acon, = common.n_async_connect(config)
	util_conn = psycopg2.connect(**config)
	util_curs = util_conn.cursor()
	create_function = """
		create or replace function n_join_foo_bar() returns integer as $$
			begin
				return (select count(*) from foo join bar on foo.c1=bar.c1);
			end;
		$$ language plpgsql"""
	drop_function = 'drop function n_join_foo_bar()'
	call_function = 'select * from n_join_foo_bar()'
	nested_query = 'SELECT (select count(*) from foo join bar on foo.c1=bar.c1)'
	expected = 'Function Scan on n_join_foo_bar (Current loop: actual rows=0, loop number=1)'
	expected_nested = r"""Result \(Current loop: actual rows=0, loop number=1\)
  InitPlan 1 \(returns \$0\)
    ->  Aggregate \(Current loop: actual rows=0, loop number=1\)
          ->  Hash Join \(Current loop: actual rows=0, loop number=1\)
                Hash Cond: \(foo.c1 = bar.c1\)
                ->  Seq Scan on foo \(Current loop: actual rows=1, loop number=1\)
                ->  Hash \(Current loop: actual rows=0, loop number=1\)
                      Buckets: \d+  Batches: \d+  Memory Usage: \d+kB
                      ->  Seq Scan on bar \(Current loop: actual rows=\d+, loop number=1\)"""

	util_curs.execute(create_function)
	util_conn.commit()

	qs, notices = common.onetime_query_state(config, acon, call_function)
	assert len(qs) == 2 \
		and qs[0][0] == qs[1][0] == acon.get_backend_pid() \
		and qs[0][1] == 0 and qs[1][1] == 1 \
		and qs[0][2] == call_function and qs[0][3] == expected \
		and qs[1][2] == nested_query and re.match(expected_nested, qs[1][3]) \
		and qs[0][4] == qs[1][4] == None
	assert len(notices) == 0

	util_curs.execute(drop_function)

	util_conn.close()
	common.n_close((acon,))
コード例 #8
0
def test_timing(config):
	"""test timing statistics"""

	acon, = common.n_async_connect(config)
	query = 'select count(*) from foo join bar on foo.c1=bar.c1'
	expected = r"""Aggregate \(Current loop: running time=\d+.\d+ actual rows=0, loop number=1\)
  ->  Hash Join \(Current loop: running time=\d+.\d+ actual rows=0, loop number=1\)
        Hash Cond: \(foo.c1 = bar.c1\)
        ->  Seq Scan on foo \(Current loop: actual time=\d+.\d+..\d+.\d+ rows=1, loop number=1\)
        ->  Hash \(Current loop: running time=\d+.\d+ actual rows=0, loop number=1\)
              Buckets: \d+  Batches: \d+  Memory Usage: \d+kB
              ->  Seq Scan on bar \(Current loop: actual time=\d+.\d+..\d+.\d+ rows=\d+, loop number=1\)"""

	common.set_guc(acon, 'pg_query_state.enable_timing', 'on')

	qs, notices = common.onetime_query_state(config, acon, query, {'timing': True})
	assert len(qs) == 1 and re.match(expected, qs[0][3])
	assert len(notices) == 0

	common.n_close((acon,))