@@ -890,7 +890,7 @@ QString BaseObject::getSourceCode(SchemaParser::CodeType def_type, bool reduced_
890890 SchemaParser sch_parser;
891891 QString filename=GlobalAttributes::getSchemaFilePath (GlobalAttributes::AlterSchemaDir, Attributes::Owner);
892892
893- sch_parser.ignoreUnkownAttributes (true );
893+ sch_parser.ignoreUnknownAttributes (true );
894894 attributes[Attributes::Owner]=sch_parser.getSourceCode (filename, attributes);
895895 }
896896 }
@@ -909,7 +909,7 @@ QString BaseObject::getSourceCode(SchemaParser::CodeType def_type, bool reduced_
909909 else
910910 attributes[Attributes::Comment]=comment;
911911
912- schparser.ignoreUnkownAttributes (true );
912+ schparser.ignoreUnknownAttributes (true );
913913
914914 attributes[Attributes::Comment]=
915915 schparser.getSourceCode (Attributes::Comment, attributes, def_type);
@@ -921,7 +921,7 @@ QString BaseObject::getSourceCode(SchemaParser::CodeType def_type, bool reduced_
921921
922922 if (def_type==SchemaParser::XmlCode)
923923 {
924- schparser.ignoreUnkownAttributes (true );
924+ schparser.ignoreUnknownAttributes (true );
925925 attributes[Attributes::AppendedSql]=
926926 schparser.getSourceCode (QString (Attributes::AppendedSql).remove (' -' ), attributes, def_type);
927927 }
@@ -937,7 +937,7 @@ QString BaseObject::getSourceCode(SchemaParser::CodeType def_type, bool reduced_
937937
938938 if (def_type==SchemaParser::XmlCode)
939939 {
940- schparser.ignoreUnkownAttributes (true );
940+ schparser.ignoreUnknownAttributes (true );
941941 attributes[Attributes::PrependedSql]=
942942 schparser.getSourceCode (QString (Attributes::PrependedSql).remove (' -' ), attributes, def_type);
943943 }
@@ -1350,7 +1350,7 @@ QString BaseObject::getDropCode(bool cascade)
13501350
13511351 setBasicAttributes (true );
13521352 schparser.setPgSQLVersion (BaseObject::pgsql_ver, ignore_db_version);
1353- schparser.ignoreUnkownAttributes (true );
1353+ schparser.ignoreUnknownAttributes (true );
13541354 schparser.ignoreEmptyAttributes (true );
13551355
13561356 attribs=attributes;
@@ -1382,7 +1382,7 @@ QString BaseObject::getAlterCode(QString sch_name, attribs_map &attribs, bool ig
13821382
13831383 schparser.setPgSQLVersion (BaseObject::pgsql_ver, ignore_db_version);
13841384 schparser.ignoreEmptyAttributes (ignore_empty_attribs);
1385- schparser.ignoreUnkownAttributes (ignore_ukn_attribs);
1385+ schparser.ignoreUnknownAttributes (ignore_ukn_attribs);
13861386 return schparser.getSourceCode (alter_sch_file, attribs);
13871387 }
13881388 catch (Exception &e)
@@ -1472,7 +1472,7 @@ QString BaseObject::getAlterCommentDefinition(BaseObject *object, attribs_map at
14721472 attributes[Attributes::Comment]=comm_obj;
14731473 }
14741474
1475- schparser.ignoreUnkownAttributes (true );
1475+ schparser.ignoreUnknownAttributes (true );
14761476 schparser.ignoreEmptyAttributes (true );
14771477 return schparser.getSourceCode (Attributes::Comment, attributes, SchemaParser::SqlCode);
14781478 }
0 commit comments