mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 21:43:06 +01:00
79 lines
2.2 KiB
Python
79 lines
2.2 KiB
Python
#coding:utf-8
|
|
|
|
"""
|
|
ID: optimizer.left-join-09
|
|
TITLE: LEFT OUTER JOIN with full match, but limited in ON and WHERE clause
|
|
DESCRIPTION:
|
|
TableX LEFT OUTER JOIN TableY with full match, but TableY results limited in ON clause.
|
|
Which should result in partial NULL results for TableY, but these are not visible because
|
|
they are filtered in the WHERE clause by "greater or equal than" operator.
|
|
FBTEST: functional.arno.optimizer.opt_left_join_09
|
|
"""
|
|
|
|
import pytest
|
|
from firebird.qa import *
|
|
|
|
init_script = """CREATE TABLE Colors (
|
|
ColorID INTEGER NOT NULL,
|
|
ColorName VARCHAR(20)
|
|
);
|
|
|
|
CREATE TABLE Flowers (
|
|
FlowerID INTEGER NOT NULL,
|
|
FlowerName VARCHAR(30),
|
|
ColorID INTEGER
|
|
);
|
|
|
|
COMMIT;
|
|
|
|
/* Value 0 represents -no value- */
|
|
INSERT INTO Colors (ColorID, ColorName) VALUES (0, 'Not defined');
|
|
INSERT INTO Colors (ColorID, ColorName) VALUES (1, 'Red');
|
|
INSERT INTO Colors (ColorID, ColorName) VALUES (2, 'Yellow');
|
|
|
|
/* insert some data with references */
|
|
INSERT INTO Flowers (FlowerID, FlowerName, ColorID) VALUES (1, 'Rose', 1);
|
|
INSERT INTO Flowers (FlowerID, FlowerName, ColorID) VALUES (2, 'Tulip', 2);
|
|
INSERT INTO Flowers (FlowerID, FlowerName, ColorID) VALUES (3, 'Gerbera', 0);
|
|
|
|
COMMIT;
|
|
|
|
/* Normally these indexes are created by the primary/foreign keys,
|
|
but we don't want to rely on them for this test */
|
|
CREATE UNIQUE ASC INDEX PK_Colors ON Colors (ColorID);
|
|
CREATE UNIQUE ASC INDEX PK_Flowers ON Flowers (FlowerID);
|
|
CREATE ASC INDEX FK_Flowers_Colors ON Flowers (ColorID);
|
|
|
|
COMMIT;
|
|
"""
|
|
|
|
db = db_factory(init=init_script)
|
|
|
|
test_script = """SET PLAN ON;
|
|
SELECT
|
|
f.ColorID,
|
|
c1.ColorID,
|
|
c2.ColorID
|
|
FROM
|
|
Flowers f
|
|
LEFT JOIN Colors c1 ON (c1.ColorID = f.ColorID) AND
|
|
(c1.ColorID >= 1)
|
|
JOIN Colors c2 ON (c2.ColorID = f.ColorID);"""
|
|
|
|
act = isql_act('db', test_script)
|
|
|
|
expected_stdout = """PLAN JOIN (JOIN (F NATURAL, C1 INDEX (PK_COLORS)), C2 INDEX (PK_COLORS))
|
|
|
|
COLORID COLORID COLORID
|
|
============ ============ ============
|
|
|
|
1 1 1
|
|
2 2 2
|
|
0 <null> 0"""
|
|
|
|
@pytest.mark.version('>=3')
|
|
def test_1(act: Action):
|
|
act.expected_stdout = expected_stdout
|
|
act.execute()
|
|
assert act.clean_stdout == act.clean_expected_stdout
|