File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 10
10
*
11
11
*
12
12
* IDENTIFICATION
13
- * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.133 2000/01/22 14:20:46 petere Exp $
13
+ * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.134 2000/01/23 08:16:37 ishii Exp $
14
14
*
15
15
* HISTORY
16
16
* AUTHOR DATE MAJOR EVENT
50
50
#include " utils/numeric.h"
51
51
52
52
#ifdef MULTIBYTE
53
+ #include " miscadmin.h"
53
54
#include " mb/pg_wchar.h"
54
55
#endif
55
56
@@ -2668,7 +2669,7 @@ createdb_opt_encoding:
2668
2669
elog (ERROR, " %s is not a valid encoding name." , $3 );
2669
2670
$$ = i;
2670
2671
#else
2671
- elog (ERROR, " WITH ENCODING is not supported. " );
2672
+ elog (ERROR, " Multi-byte support is not enabled " );
2672
2673
#endif
2673
2674
}
2674
2675
| ENCODING ' =' Iconst
@@ -2678,7 +2679,7 @@ createdb_opt_encoding:
2678
2679
elog (ERROR, " %d is not a valid encoding code." , $3 );
2679
2680
$$ = $3 ;
2680
2681
#else
2681
- elog (ERROR, " WITH ENCODING is not supported. " );
2682
+ elog (ERROR, " Multi-byte support is not enabled " );
2682
2683
#endif
2683
2684
}
2684
2685
| ENCODING ' =' DEFAULT
You can’t perform that action at this time.
0 commit comments