Home
last modified time | relevance | path

Searched refs:unlogged (Results 1 – 25 of 2157) sorted by relevance

12345678910>>...87

/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/database/postgresql/
H A Dpostgresql_table.py307 unlogged=False, owner=''): argument
352 if unlogged:
377 unlogged=False, params='', owner=''): argument
395 if unlogged:
469 unlogged=dict(type='bool', default=False),
488 unlogged = module.params["unlogged"]
501 …uncate or newname or columns or tablespace or like or storage_params or unlogged or owner or inclu…
506 …if truncate and (newname or columns or like or unlogged or storage_params or owner or tablespace o…
511 …if newname and (columns or like or unlogged or storage_params or owner or tablespace or including):
563 tablespace, unlogged, owner)
[all …]
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/postgresql/plugins/modules/
H A Dpostgresql_table.py313 unlogged=False, owner=''): argument
358 if unlogged:
383 unlogged=False, params='', owner=''): argument
401 if unlogged:
473 unlogged=dict(type='bool', default=False),
493 unlogged = module.params['unlogged']
513 …uncate or newname or columns or tablespace or like or storage_params or unlogged or owner or inclu…
518 …if truncate and (newname or columns or like or unlogged or storage_params or owner or tablespace o…
523 …if newname and (columns or like or unlogged or storage_params or owner or tablespace or including):
575 tablespace, unlogged, owner)
[all …]
/dports/sysutils/py-ansible-core/ansible-core-2.11.6/test/support/integration/plugins/modules/
H A Dpostgresql_table.py309 unlogged=False, owner=''): argument
354 if unlogged:
379 unlogged=False, params='', owner=''): argument
397 if unlogged:
471 unlogged=dict(type='bool', default=False),
490 unlogged = module.params["unlogged"]
503 …uncate or newname or columns or tablespace or like or storage_params or unlogged or owner or inclu…
508 …if truncate and (newname or columns or like or unlogged or storage_params or owner or tablespace o…
513 …if newname and (columns or like or unlogged or storage_params or owner or tablespace or including):
565 tablespace, unlogged, owner)
[all …]
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/test/support/integration/plugins/modules/
H A Dpostgresql_table.py309 unlogged=False, owner=''): argument
354 if unlogged:
379 unlogged=False, params='', owner=''): argument
397 if unlogged:
471 unlogged=dict(type='bool', default=False),
490 unlogged = module.params["unlogged"]
503 …uncate or newname or columns or tablespace or like or storage_params or unlogged or owner or inclu…
508 …if truncate and (newname or columns or like or unlogged or storage_params or owner or tablespace o…
513 …if newname and (columns or like or unlogged or storage_params or owner or tablespace or including):
565 tablespace, unlogged, owner)
[all …]
/dports/databases/pgmodeler/pgmodeler-0.9.3-beta/libpgmodeler/src/
H A Dtable.cpp25 with_oid=unlogged=rls_enabled=rls_forced=false; in Table()
40 setCodeInvalidated(unlogged != value); in setUnlogged()
41 unlogged=value; in setUnlogged()
313 return unlogged; in isUnlogged()
360 attributes[Attributes::Unlogged]=(unlogged ? Attributes::True : ""); in __getCodeDefinition()
384 this->unlogged=tab.unlogged; in operator =()
462 if(this->unlogged!=tab->unlogged) in getAlterDefinition()
463 attribs[Attributes::Unlogged]=(tab->unlogged ? Attributes::True : Attributes::Unset); in getAlterDefinition()
H A Dtable.h46 bool unlogged, variable
/dports/databases/pgloader3/postmodern-20210124-git/
H A DCHANGELOG.md168 Basic table name permutations with :temp, :if-not-exists and :unlogged
190 (query (:create-table (:unlogged 'distributors-in_hell))
192 (query (:create-table (:unlogged "distributors-in_hell"))
194 (query (:create-table (:unlogged :if-not-exists 'distributors-in_hell))
196 (query (:create-table (:unlogged :if-not-exists "distributors-in_hell"))
198 (query (:create-table (:temp :unlogged 'distributors-in_hell))
200 (query (:create-table (:temp :unlogged "distributors-in_hell"))
229 (query (:create-table (:unlogged :of distributors-in-hell 'employee-type))
231 (query (:create-table (:unlogged :of distributors-in-hell "employee_type"))
244 (query (:create-table (:unlogged (:if-not-exists 'distributors-in_hell)))
[all …]
/dports/databases/pgmodeler/pgmodeler-0.9.3-beta/schemas/alter/
H A Dtable.sch25 %if {unlogged} %then
28 %if ({unlogged}=="unset") %then
/dports/databases/pgmodeler/pgmodeler-0.9.3-beta/schemas/xml/
H A Dtable.sch9 %if {unlogged} %then [ unlogged="true"] %end
/dports/devel/p5-Log-Simple/Log-Simple-1.8/t/
H A D00basic.t7 ok( logger( 3, "test" ), "test unlogged message" );
/dports/databases/py-Pyrseas/Pyrseas-0.9.1/pyrseas/dbobject/
H A Dtable.py343 tablespace=None, unlogged=False, options=None, argument
359 self.unlogged = unlogged
482 if self.unlogged is False:
574 unlogged = 'UNLOGGED ' if self.unlogged else ''
597 unlogged, self.qualname(), collist, partbyclause, partofclause,
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/mysql-test/suite/galera/t/
H A Dgalera_sql_log_bin_zero.test2 # Test SET SESSION sql_log_bin = 0 . We expect that unlogged updates will not be replicated
/dports/databases/mysqlwsrep56-server/mysql-wsrep-wsrep_5.6.51-25.33/mysql-test/suite/galera/t/
H A Dgalera_sql_log_bin_zero.test2 # Test SET SESSION sql_log_bin = 0 . We expect that unlogged updates will not be replicated
/dports/sysutils/ansible2/ansible-2.9.27/test/integration/targets/postgresql/tasks/
H A Dpostgresql_table.yml631 # Check create unlogged table
634 # Create unlogged table in check_mode:
635 - name: postgresql_table - create unlogged table in check_mode
642 unlogged: yes
668 # Create unlogged table:
669 - name: postgresql_table - create unlogged table
676 unlogged: yes
/dports/databases/pg_citus/citus-10.2.3/src/test/regress/output/
H A Dmulti_alter_table_statements.source1079 SELECT relname, CASE relpersistence WHEN 'u' THEN 'unlogged' WHEN 'p' then 'logged' ELSE 'unknown' …
1082 logged_test_220022 | unlogged
1083 logged_test_220023 | unlogged
1084 logged_test_220024 | unlogged
1085 logged_test_220025 | unlogged
1091 SELECT relname, CASE relpersistence WHEN 'u' THEN 'unlogged' WHEN 'p' then 'logged' ELSE 'unknown' …
1112 logged_test | unlogged
1119 logged_test_220022 | unlogged
1120 logged_test_220023 | unlogged
1121 logged_test_220024 | unlogged
[all …]
/dports/databases/pgadmin3/pgadmin3-1.22.2/pgadmin/include/schema/
H A DpgTable.h73 return unlogged; in GetUnlogged()
77 unlogged = b; in iSetUnlogged()
565 …bool hasOids, unlogged, hasSubclass, rowsCounted, isReplicated, showExtendedStatistics, distributi… variable
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/postgresql/tests/integration/targets/postgresql_table/tasks/
H A Dpostgresql_table_initial.yml631 # Check create unlogged table
634 # Create unlogged table in check_mode:
635 - name: postgresql_table - create unlogged table in check_mode
642 unlogged: yes
668 # Create unlogged table:
669 - name: postgresql_table - create unlogged table
676 unlogged: yes
/dports/databases/pg_citus/citus-10.2.3/src/test/regress/expected/
H A Dcolumnar_create.out27 -- Should fail: unlogged tables not supported
29 ERROR: unlogged columnar tables are not supported
/dports/shells/fish/fish-3.3.1/share/completions/
H A Dpg_dumpall.fish36 complete -c pg_dumpall -l no-unlogged-table-data -d "Do not dump unlogged table data"
/dports/databases/p5-DBD-ODBC/DBD-ODBC-1.61/
H A DREADME.informix16 does not seem to be happy with unlogged databases with no transactional
/dports/databases/pecl-cassandra/php-driver-61faee0/ext/src/RetryPolicy/
H A DDowngradingConsistency.yaml14 * On a write timeout, Retry unlogged batches at a lower consistency level
/dports/science/dynare/dynare-4.6.4/matlab/
H A Dstore_smoother_results.m107 elseif options_.prefilter == 0 && ~options_.loglinear %unlogged steady state must be used
139 elseif ~options_.loglinear %unlogged steady state must be used
160 elseif options_.loglinear == 0 %unlogged steady state must be used
/dports/databases/postgresql96-pltcl/postgresql-9.6.24/src/test/regress/expected/
H A Dcreate_table.out212 SELECT relname, relkind, relpersistence FROM pg_class WHERE relname ~ '^unlogged\d' ORDER BY relnam…
223 SELECT relname, relkind, relpersistence FROM pg_class WHERE relname ~ '^unlogged\d' ORDER BY relnam…
/dports/databases/postgresql96-server/postgresql-9.6.24/src/test/regress/expected/
H A Dcreate_table.out212 SELECT relname, relkind, relpersistence FROM pg_class WHERE relname ~ '^unlogged\d' ORDER BY relnam…
223 SELECT relname, relkind, relpersistence FROM pg_class WHERE relname ~ '^unlogged\d' ORDER BY relnam…
/dports/databases/postgresql96-plperl/postgresql-9.6.24/src/test/regress/expected/
H A Dcreate_table.out212 SELECT relname, relkind, relpersistence FROM pg_class WHERE relname ~ '^unlogged\d' ORDER BY relnam…
223 SELECT relname, relkind, relpersistence FROM pg_class WHERE relname ~ '^unlogged\d' ORDER BY relnam…

12345678910>>...87