diff options
author | Michael Meskes <meskes@postgresql.org> | 2007-09-04 10:02:29 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2007-09-04 10:02:29 +0000 |
commit | a6b5765c7eefab54c5d0321e69a342e86d9c1a0f (patch) | |
tree | 02de55bc2c2c10b3c285ed511db13258d8c3089e /src/interfaces/ecpg/test | |
parent | fcc6756341a03350854545c71b5384e804de1209 (diff) | |
download | postgresql-a6b5765c7eefab54c5d0321e69a342e86d9c1a0f.tar.gz postgresql-a6b5765c7eefab54c5d0321e69a342e86d9c1a0f.zip |
Synced parser and keyword list.
Diffstat (limited to 'src/interfaces/ecpg/test')
-rw-r--r-- | src/interfaces/ecpg/test/expected/thread-thread.c | 2 | ||||
-rw-r--r-- | src/interfaces/ecpg/test/expected/thread-thread_implicit.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/test/expected/thread-thread.c b/src/interfaces/ecpg/test/expected/thread-thread.c index 8916998b50d..183764ade91 100644 --- a/src/interfaces/ecpg/test/expected/thread-thread.c +++ b/src/interfaces/ecpg/test/expected/thread-thread.c @@ -76,7 +76,7 @@ int main(int argc, char *argv[]) { ECPGtrans(__LINE__, NULL, "commit");} #line 48 "thread.pgc" - { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "create table test_thread ( tstamp timestamp not null default cast( timeofday () as timestamp ) , thread TEXT not null , iteration integer not null , primary key( thread , iteration ) ) ", ECPGt_EOIT, ECPGt_EORT);} + { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "create table test_thread ( tstamp timestamp not null default cast( timeofday () as timestamp ) , thread text not null , iteration integer not null , primary key( thread , iteration ) ) ", ECPGt_EOIT, ECPGt_EORT);} #line 53 "thread.pgc" { ECPGtrans(__LINE__, NULL, "commit");} diff --git a/src/interfaces/ecpg/test/expected/thread-thread_implicit.c b/src/interfaces/ecpg/test/expected/thread-thread_implicit.c index 4f46f98b6d8..697a104f319 100644 --- a/src/interfaces/ecpg/test/expected/thread-thread_implicit.c +++ b/src/interfaces/ecpg/test/expected/thread-thread_implicit.c @@ -77,7 +77,7 @@ int main(int argc, char *argv[]) { ECPGtrans(__LINE__, NULL, "commit");} #line 49 "thread_implicit.pgc" - { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "create table test_thread ( tstamp timestamp not null default cast( timeofday () as timestamp ) , thread TEXT not null , iteration integer not null , primary key( thread , iteration ) ) ", ECPGt_EOIT, ECPGt_EORT);} + { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "create table test_thread ( tstamp timestamp not null default cast( timeofday () as timestamp ) , thread text not null , iteration integer not null , primary key( thread , iteration ) ) ", ECPGt_EOIT, ECPGt_EORT);} #line 54 "thread_implicit.pgc" { ECPGtrans(__LINE__, NULL, "commit");} |