Skip to content
Snippets Groups Projects
Verified Commit 703ed91f authored by Timm Fitschen's avatar Timm Fitschen
Browse files

update test for select name from entity

parent d7c9dd8b
No related branches found
No related tags found
1 merge request!4add new test for SELECT name FROM ENTITY
Pipeline #6644 passed
......@@ -148,8 +148,14 @@ def test_name2():
def test_name_from_entity():
p3s = db.execute_query("SELECT name FROM ENTITY")
assert len(p3s) == 37
db.administration.set_server_property(
"QUERY_FILTER_ENTITIES_WITHOUT_RETRIEVE_PERMISSIONS",
"FALSE")
p3s = db.execute_query("SELECT name FROM ENTITY", flags={"cache": "false"})
db.administration.set_server_property(
"QUERY_FILTER_ENTITIES_WITHOUT_RETRIEVE_PERMISSIONS",
"TRUE")
p3s = db.execute_query("SELECT name FROM ENTITY", flags={"cache": "false"})
def test_multi1():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment