Old multi-byte bug. Forgot to rename #ifdef MB to #ifdef MULTIBYTE
authorTatsuo Ishii <ishii@postgresql.org>
Wed, 18 Aug 1999 13:01:50 +0000 (13:01 +0000)
committerTatsuo Ishii <ishii@postgresql.org>
Wed, 18 Aug 1999 13:01:50 +0000 (13:01 +0000)
Now SET NAMES working again...

src/backend/parser/gram.y

index 26b0056d207893efddae48337b5ed0ca1a768aee..7d88512c5ecd0db3593748680549675f16dda90a 100644 (file)
@@ -568,7 +568,7 @@ VariableSetStmt:  SET ColId TO var_value
                                }
                | SET NAMES encoding
                                {
-#ifdef MB
+#ifdef MULTIBYTE
                                        VariableSetStmt *n = makeNode(VariableSetStmt);
                                        n->name  = "client_encoding";
                                        n->value = $3;