From 385f6f23fee37617e0148babdb00783775d04a70 Mon Sep 17 00:00:00 2001 From: Peter Bex Date: Mon, 11 Jun 2018 21:39:55 +0200 Subject: Initial port of PostgreSQL egg to CHICKEN 5 --- feature-tests/diag-schema-info.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 feature-tests/diag-schema-info.c (limited to 'feature-tests/diag-schema-info.c') diff --git a/feature-tests/diag-schema-info.c b/feature-tests/diag-schema-info.c new file mode 100644 index 0000000..e64e990 --- /dev/null +++ b/feature-tests/diag-schema-info.c @@ -0,0 +1,10 @@ +#include +int main(void) +{ + int s = PG_DIAG_SCHEMA_NAME; + int t = PG_DIAG_TABLE_NAME; + int col = PG_DIAG_COLUMN_NAME; + int d = PG_DIAG_DATATYPE_NAME; + int con = PG_DIAG_CONSTRAINT_NAME; + return s + t + col + d + con; +} -- cgit v1.2.3