should be it

This commit is contained in:
2025-10-24 19:21:19 -05:00
parent a4b23fc57c
commit f09560c7b1
14047 changed files with 3161551 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
# name: test/sql/join/test_string_payload.test
# description: Test join with non-inlined string payload
# group: [join]
statement ok
pragma verify_external
statement ok
CREATE TABLE test1 (i INT, s1 VARCHAR, s2 VARCHAR)
statement ok
INSERT INTO test1 VALUES (1, 'thisisareallylongstring', 'thisisareallylongstringtoo')
statement ok
CREATE TABLE test2 (i INT, s1 VARCHAR, s2 VARCHAR)
statement ok
INSERT INTO test2 VALUES (1, 'longstringsarecool', 'coolerthanshortstrings')
query IIIII
SELECT t1.i, t1.s1, t1.s2, t2.s1, t2.s2 FROM test1 t1, test2 t2 WHERE t1.i = t2.i
----
1 thisisareallylongstring thisisareallylongstringtoo longstringsarecool coolerthanshortstrings