1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-06 18:42:54 +03:00

*** empty log message ***

This commit is contained in:
Michael Meskes
2000-04-03 19:34:26 +00:00
parent c4ef93dbc6
commit 5454b37921
3 changed files with 93 additions and 39 deletions

View File

@@ -8,7 +8,8 @@ int
main ()
{
EXEC SQL BEGIN DECLARE SECTION;
int i = 1;
int i = 3;
int *did = &i;
int a[10] = {9,8,7,6,5,4,3,2,1,0};
double f;
EXEC SQL END DECLARE SECTION;
@@ -31,6 +32,8 @@ EXEC SQL END DECLARE SECTION;
EXEC SQL INSERT INTO test(f,i,a) VALUES(404.90,1,'{0,1,2,3,4,5,6,7,8,9}');
EXEC SQL INSERT INTO test(f,i,a) VALUES(140787.0,2,:a);
EXEC SQL INSERT INTO test(f,i,a) VALUES(14.07,:did,:a);
EXEC SQL COMMIT;