Home
last modified time | relevance | path

Searched refs:tblspace (Results 1 – 25 of 56) sorted by relevance

123

/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/database/postgresql/
H A Dpostgresql_tablespace.py429 if tblspace.exists and location and location != tblspace.location:
464 changed = tblspace.drop()
467 elif tblspace.exists and rename_to:
468 if tblspace.name != rename_to:
473 tblspace.get_info()
483 tblspace.get_info()
499 tablespace=tblspace.name,
500 owner=tblspace.owner,
502 options=tblspace.settings,
503 location=tblspace.location,
[all …]
H A Dpostgresql_table.py297 tblspace=res[0][1] if res[0][1] else '',
306 def create(self, columns='', params='', tblspace='', argument
325 if tblspace == 'pg_default' and self.info['tblspace'] is None:
327 elif tblspace and self.info['tblspace'] != tblspace:
328 self.set_tblspace(tblspace)
365 if tblspace:
366 query += " TABLESPACE %s" % pg_quote_identifier(tblspace, 'database')
376 def create_like(self, src_table, including='', tblspace='', argument
412 if tblspace:
413 query += " TABLESPACE %s" % pg_quote_identifier(tblspace, 'database')
[all …]
H A Dpostgresql_idx.py338 tblspace=res[0][2] if res[0][2] else '',
348 def create(self, tblname, idxtype, columns, cond, tblspace, storage_params, concurrent=True): argument
387 if tblspace:
388 query += ' TABLESPACE %s' % tblspace
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/postgresql/plugins/modules/
H A Dpostgresql_tablespace.py450 if tblspace.exists and location and location != tblspace.location:
452 "different location '%s'" % (tblspace.name, tblspace.location))
486 changed = tblspace.drop()
490 if tblspace.name != rename_to:
495 tblspace.get_info()
505 tblspace.get_info()
521 tablespace=tblspace.name,
522 owner=tblspace.owner,
524 options=tblspace.settings,
525 location=tblspace.location,
[all …]
H A Dpostgresql_table.py303 tblspace=res[0][1] if res[0][1] else '',
312 def create(self, columns='', params='', tblspace='', argument
331 if tblspace == 'pg_default' and self.info['tblspace'] is None:
333 elif tblspace and self.info['tblspace'] != tblspace:
334 self.set_tblspace(tblspace)
371 if tblspace:
372 query += ' TABLESPACE "%s"' % tblspace
382 def create_like(self, src_table, including='', tblspace='', argument
418 if tblspace:
419 query += ' TABLESPACE "%s"' % tblspace
[all …]
H A Dpostgresql_idx.py359 tblspace=res[0][2] if res[0][2] else '',
369 def create(self, tblname, idxtype, columns, cond, tblspace, argument
410 if tblspace:
411 query += ' TABLESPACE "%s"' % tblspace
/dports/sysutils/py-ansible-core/ansible-core-2.11.6/test/support/integration/plugins/modules/
H A Dpostgresql_table.py299 tblspace=res[0][1] if res[0][1] else '',
308 def create(self, columns='', params='', tblspace='', argument
327 if tblspace == 'pg_default' and self.info['tblspace'] is None:
329 elif tblspace and self.info['tblspace'] != tblspace:
330 self.set_tblspace(tblspace)
367 if tblspace:
368 query += " TABLESPACE %s" % pg_quote_identifier(tblspace, 'database')
378 def create_like(self, src_table, including='', tblspace='', argument
414 if tblspace:
415 query += " TABLESPACE %s" % pg_quote_identifier(tblspace, 'database')
[all …]
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/test/support/integration/plugins/modules/
H A Dpostgresql_table.py299 tblspace=res[0][1] if res[0][1] else '',
308 def create(self, columns='', params='', tblspace='', argument
327 if tblspace == 'pg_default' and self.info['tblspace'] is None:
329 elif tblspace and self.info['tblspace'] != tblspace:
330 self.set_tblspace(tblspace)
367 if tblspace:
368 query += " TABLESPACE %s" % pg_quote_identifier(tblspace, 'database')
378 def create_like(self, src_table, including='', tblspace='', argument
414 if tblspace:
415 query += " TABLESPACE %s" % pg_quote_identifier(tblspace, 'database')
[all …]
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/postgresql/tests/integration/targets/postgresql_idx/tasks/
H A Dpostgresql_idx_initial.yml68 - result.tblspace == ''
106 - result.tblspace == ''
143 - result.tblspace == ''
174 - result.tblspace == 'ssd'
204 - result.tblspace == ''
231 - result.tblspace == ''
257 - result.tblspace == ''
/dports/sysutils/ansible2/ansible-2.9.27/test/integration/targets/postgresql/tasks/
H A Dpostgresql_idx.yml83 - result.tblspace == ''
122 - result.tblspace == ''
161 - result.tblspace == ''
193 - result.tblspace == 'ssd'
223 - result.tblspace == ''
251 - result.tblspace == ''
/dports/databases/postgresql96-server/postgresql-9.6.24/src/backend/catalog/
H A Dobjectaddress.c3081 char *tblspace; in getObjectDescription() local
3083 tblspace = get_tablespace_name(object->objectId); in getObjectDescription()
3084 if (!tblspace) in getObjectDescription()
3087 appendStringInfo(&buffer, _("tablespace %s"), tblspace); in getObjectDescription()
4510 char *tblspace; in getObjectIdentityParts() local
4512 tblspace = get_tablespace_name(object->objectId); in getObjectIdentityParts()
4513 if (!tblspace) in getObjectIdentityParts()
4517 *objname = list_make1(tblspace); in getObjectIdentityParts()
4519 quote_identifier(tblspace)); in getObjectIdentityParts()
/dports/databases/postgresql96-plpython/postgresql-9.6.24/src/backend/catalog/
H A Dobjectaddress.c3081 char *tblspace; in getObjectDescription() local
3083 tblspace = get_tablespace_name(object->objectId); in getObjectDescription()
3084 if (!tblspace) in getObjectDescription()
3087 appendStringInfo(&buffer, _("tablespace %s"), tblspace); in getObjectDescription()
4510 char *tblspace; in getObjectIdentityParts() local
4512 tblspace = get_tablespace_name(object->objectId); in getObjectIdentityParts()
4513 if (!tblspace) in getObjectIdentityParts()
4517 *objname = list_make1(tblspace); in getObjectIdentityParts()
4519 quote_identifier(tblspace)); in getObjectIdentityParts()
/dports/databases/postgresql96-pltcl/postgresql-9.6.24/src/backend/catalog/
H A Dobjectaddress.c3081 char *tblspace; in getObjectDescription() local
3083 tblspace = get_tablespace_name(object->objectId); in getObjectDescription()
3084 if (!tblspace) in getObjectDescription()
3087 appendStringInfo(&buffer, _("tablespace %s"), tblspace); in getObjectDescription()
4510 char *tblspace; in getObjectIdentityParts() local
4512 tblspace = get_tablespace_name(object->objectId); in getObjectIdentityParts()
4513 if (!tblspace) in getObjectIdentityParts()
4517 *objname = list_make1(tblspace); in getObjectIdentityParts()
4519 quote_identifier(tblspace)); in getObjectIdentityParts()
/dports/databases/postgresql96-client/postgresql-9.6.24/src/backend/catalog/
H A Dobjectaddress.c3081 char *tblspace; in getObjectDescription() local
3083 tblspace = get_tablespace_name(object->objectId); in getObjectDescription()
3084 if (!tblspace) in getObjectDescription()
3087 appendStringInfo(&buffer, _("tablespace %s"), tblspace); in getObjectDescription()
4510 char *tblspace; in getObjectIdentityParts() local
4512 tblspace = get_tablespace_name(object->objectId); in getObjectIdentityParts()
4513 if (!tblspace) in getObjectIdentityParts()
4517 *objname = list_make1(tblspace); in getObjectIdentityParts()
4519 quote_identifier(tblspace)); in getObjectIdentityParts()
/dports/databases/postgresql96-plperl/postgresql-9.6.24/src/backend/catalog/
H A Dobjectaddress.c3081 char *tblspace; in getObjectDescription() local
3083 tblspace = get_tablespace_name(object->objectId); in getObjectDescription()
3084 if (!tblspace) in getObjectDescription()
3087 appendStringInfo(&buffer, _("tablespace %s"), tblspace); in getObjectDescription()
4510 char *tblspace; in getObjectIdentityParts() local
4512 tblspace = get_tablespace_name(object->objectId); in getObjectIdentityParts()
4513 if (!tblspace) in getObjectIdentityParts()
4517 *objname = list_make1(tblspace); in getObjectIdentityParts()
4519 quote_identifier(tblspace)); in getObjectIdentityParts()
/dports/databases/postgresql96-contrib/postgresql-9.6.24/src/backend/catalog/
H A Dobjectaddress.c3081 char *tblspace; in getObjectDescription() local
3083 tblspace = get_tablespace_name(object->objectId); in getObjectDescription()
3084 if (!tblspace) in getObjectDescription()
3087 appendStringInfo(&buffer, _("tablespace %s"), tblspace); in getObjectDescription()
4510 char *tblspace; in getObjectIdentityParts() local
4512 tblspace = get_tablespace_name(object->objectId); in getObjectIdentityParts()
4513 if (!tblspace) in getObjectIdentityParts()
4517 *objname = list_make1(tblspace); in getObjectIdentityParts()
4519 quote_identifier(tblspace)); in getObjectIdentityParts()
/dports/databases/postgresql96-docs/postgresql-9.6.24/src/backend/catalog/
H A Dobjectaddress.c3081 char *tblspace; in getObjectDescription() local
3083 tblspace = get_tablespace_name(object->objectId); in getObjectDescription()
3084 if (!tblspace) in getObjectDescription()
3087 appendStringInfo(&buffer, _("tablespace %s"), tblspace); in getObjectDescription()
4510 char *tblspace; in getObjectIdentityParts() local
4512 tblspace = get_tablespace_name(object->objectId); in getObjectIdentityParts()
4513 if (!tblspace) in getObjectIdentityParts()
4517 *objname = list_make1(tblspace); in getObjectIdentityParts()
4519 quote_identifier(tblspace)); in getObjectIdentityParts()
/dports/databases/postgresql10-plperl/postgresql-10.19/src/backend/catalog/
H A Dobjectaddress.c3268 char *tblspace; in getObjectDescription() local
3270 tblspace = get_tablespace_name(object->objectId); in getObjectDescription()
3271 if (!tblspace) in getObjectDescription()
3274 appendStringInfo(&buffer, _("tablespace %s"), tblspace); in getObjectDescription()
4779 char *tblspace; in getObjectIdentityParts() local
4781 tblspace = get_tablespace_name(object->objectId); in getObjectIdentityParts()
4782 if (!tblspace) in getObjectIdentityParts()
4786 *objname = list_make1(tblspace); in getObjectIdentityParts()
4788 quote_identifier(tblspace)); in getObjectIdentityParts()
/dports/databases/postgresql10-pltcl/postgresql-10.19/src/backend/catalog/
H A Dobjectaddress.c3268 char *tblspace; in getObjectDescription() local
3270 tblspace = get_tablespace_name(object->objectId); in getObjectDescription()
3271 if (!tblspace) in getObjectDescription()
3274 appendStringInfo(&buffer, _("tablespace %s"), tblspace); in getObjectDescription()
4779 char *tblspace; in getObjectIdentityParts() local
4781 tblspace = get_tablespace_name(object->objectId); in getObjectIdentityParts()
4782 if (!tblspace) in getObjectIdentityParts()
4786 *objname = list_make1(tblspace); in getObjectIdentityParts()
4788 quote_identifier(tblspace)); in getObjectIdentityParts()
/dports/databases/postgresql11-client/postgresql-11.14/src/backend/catalog/
H A Dobjectaddress.c3315 char *tblspace; in getObjectDescription() local
3317 tblspace = get_tablespace_name(object->objectId); in getObjectDescription()
3318 if (!tblspace) in getObjectDescription()
3321 appendStringInfo(&buffer, _("tablespace %s"), tblspace); in getObjectDescription()
4861 char *tblspace; in getObjectIdentityParts() local
4863 tblspace = get_tablespace_name(object->objectId); in getObjectIdentityParts()
4864 if (!tblspace) in getObjectIdentityParts()
4868 *objname = list_make1(tblspace); in getObjectIdentityParts()
4870 quote_identifier(tblspace)); in getObjectIdentityParts()
/dports/databases/postgresql10-client/postgresql-10.19/src/backend/catalog/
H A Dobjectaddress.c3268 char *tblspace; in getObjectDescription() local
3270 tblspace = get_tablespace_name(object->objectId); in getObjectDescription()
3271 if (!tblspace) in getObjectDescription()
3274 appendStringInfo(&buffer, _("tablespace %s"), tblspace); in getObjectDescription()
4779 char *tblspace; in getObjectIdentityParts() local
4781 tblspace = get_tablespace_name(object->objectId); in getObjectIdentityParts()
4782 if (!tblspace) in getObjectIdentityParts()
4786 *objname = list_make1(tblspace); in getObjectIdentityParts()
4788 quote_identifier(tblspace)); in getObjectIdentityParts()
/dports/databases/postgresql10-docs/postgresql-10.19/src/backend/catalog/
H A Dobjectaddress.c3268 char *tblspace; in getObjectDescription() local
3270 tblspace = get_tablespace_name(object->objectId); in getObjectDescription()
3271 if (!tblspace) in getObjectDescription()
3274 appendStringInfo(&buffer, _("tablespace %s"), tblspace); in getObjectDescription()
4779 char *tblspace; in getObjectIdentityParts() local
4781 tblspace = get_tablespace_name(object->objectId); in getObjectIdentityParts()
4782 if (!tblspace) in getObjectIdentityParts()
4786 *objname = list_make1(tblspace); in getObjectIdentityParts()
4788 quote_identifier(tblspace)); in getObjectIdentityParts()
/dports/databases/postgresql10-plpython/postgresql-10.19/src/backend/catalog/
H A Dobjectaddress.c3268 char *tblspace; in getObjectDescription() local
3270 tblspace = get_tablespace_name(object->objectId); in getObjectDescription()
3271 if (!tblspace) in getObjectDescription()
3274 appendStringInfo(&buffer, _("tablespace %s"), tblspace); in getObjectDescription()
4779 char *tblspace; in getObjectIdentityParts() local
4781 tblspace = get_tablespace_name(object->objectId); in getObjectIdentityParts()
4782 if (!tblspace) in getObjectIdentityParts()
4786 *objname = list_make1(tblspace); in getObjectIdentityParts()
4788 quote_identifier(tblspace)); in getObjectIdentityParts()
/dports/databases/postgresql10-contrib/postgresql-10.19/src/backend/catalog/
H A Dobjectaddress.c3268 char *tblspace; in getObjectDescription() local
3270 tblspace = get_tablespace_name(object->objectId); in getObjectDescription()
3271 if (!tblspace) in getObjectDescription()
3274 appendStringInfo(&buffer, _("tablespace %s"), tblspace); in getObjectDescription()
4779 char *tblspace; in getObjectIdentityParts() local
4781 tblspace = get_tablespace_name(object->objectId); in getObjectIdentityParts()
4782 if (!tblspace) in getObjectIdentityParts()
4786 *objname = list_make1(tblspace); in getObjectIdentityParts()
4788 quote_identifier(tblspace)); in getObjectIdentityParts()
/dports/databases/postgresql11-plperl/postgresql-11.14/src/backend/catalog/
H A Dobjectaddress.c3315 char *tblspace; in getObjectDescription() local
3317 tblspace = get_tablespace_name(object->objectId); in getObjectDescription()
3318 if (!tblspace) in getObjectDescription()
3321 appendStringInfo(&buffer, _("tablespace %s"), tblspace); in getObjectDescription()
4861 char *tblspace; in getObjectIdentityParts() local
4863 tblspace = get_tablespace_name(object->objectId); in getObjectIdentityParts()
4864 if (!tblspace) in getObjectIdentityParts()
4868 *objname = list_make1(tblspace); in getObjectIdentityParts()
4870 quote_identifier(tblspace)); in getObjectIdentityParts()

123