diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-04-01 21:28:47 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-04-01 21:28:47 +0000 |
| commit | 375369acd1c621bdc683c58bc9c31d4e79d14849 (patch) | |
| tree | f29974842cea4105c92da6031bac736ddf5f833a /src/test/regress/input/misc.source | |
| parent | 8590a62b75d3dba24609eb46b34fac13ed881d9e (diff) | |
| download | postgresql-375369acd1c621bdc683c58bc9c31d4e79d14849.tar.gz | |
Replace TupleTableSlot convention for whole-row variables and function
results with tuples as ordinary varlena Datums. This commit does not
in itself do much for us, except eliminate the horrid memory leak
associated with evaluation of whole-row variables. However, it lays the
groundwork for allowing composite types as table columns, and perhaps
some other useful features as well. Per my proposal of a few days ago.
Diffstat (limited to 'src/test/regress/input/misc.source')
| -rw-r--r-- | src/test/regress/input/misc.source | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/regress/input/misc.source b/src/test/regress/input/misc.source index c10f73c5c6..ebf13626c7 100644 --- a/src/test/regress/input/misc.source +++ b/src/test/regress/input/misc.source @@ -212,10 +212,12 @@ SELECT name(equipment(p.hobbies)), name(p.hobbies), p.name FROM person* p; SELECT user_relns() AS user_relns ORDER BY user_relns; ---SELECT name(equipment(hobby_construct(text 'skywalking', text 'mer'))) AS equip_name; +SELECT name(equipment(hobby_construct(text 'skywalking', text 'mer'))); SELECT hobbies_by_name('basketball'); +SELECT name, overpaid(emp.*) FROM emp; + -- -- check that old-style C functions work properly with TOASTed values -- |
