1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-05 07:21:24 +03:00

Fixed informix behaviour for select without into.

This commit is contained in:
Michael Meskes
2003-07-04 11:30:48 +00:00
parent 79fafdf49c
commit 23e4fc18a7
3 changed files with 18 additions and 6 deletions

View File

@ -47,6 +47,12 @@ int main()
$delete from test where i=:n;
printf("delete: %ld\n", sqlca.sqlcode);
$select 1 from test where i=14;
printf("Exists: %ld\n", sqlca.sqlcode);
$select 1 from test where i=147;
printf("Does not exist: %ld\n", sqlca.sqlcode);
$commit;
$drop table test;
$commit;