We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7183a20 + 4666b4e commit 6a7f2c6Copy full SHA for 6a7f2c6
1 file changed
src/gen/osm2pgsql-gen.cpp
@@ -89,7 +89,7 @@ Main Options:
89
-a|--append Run in append mode
90
-c|--create Run in create mode (default)
91
-S|--style=FILE The Lua config file (same as for osm2pgsql)
92
- -j|--jobs=NUM Number of parallel jobs (default 1)
+ -j|--jobs=NUM Number of parallel jobs (default 1, max 256)
93
--middle-schema=SCHEMA Database schema for middle tables (default set with --schema)
94
--schema=SCHEMA Default database schema (default: 'public')
95
@@ -751,11 +751,6 @@ int main(int argc, char *argv[])
751
return 2;
752
}
753
754
- if (jobs < 1 || jobs > 32) {
755
- log_error("The --jobs/-j parameter must be between 1 and 32.");
756
- return 2;
757
- }
758
-
759
if (middle_dbschema.empty()) {
760
middle_dbschema = dbschema;
761
0 commit comments