Home
last modified time | relevance | path

Searched refs:PERSISTENT (Results 1 – 25 of 1191) sorted by relevance

12345678910>>...48

/dports/devel/p5-Eval-Context/Eval-Context-0.09.11/t/
H A D009_persistent_variables.t48 local $Plan = {'PERSISTENT' => 37} ;
84 [ [ '$hash' , $Eval::Context::USE, $Eval::Context::PERSISTENT] , "\$hash->{B}++ ;\n"
92 [ [ '%hash' , $Eval::Context::USE, $Eval::Context::PERSISTENT] , "\$hash{B} ++\n"
100 [ [ '$array' , $Eval::Context::USE, $Eval::Context::PERSISTENT] , "\$array->[1]++ ;\n"
141 INSTALL_VARIABLES => [[ '$object' , 42, $Eval::Context::PERSISTENT]],
215 INSTALL_VARIABLES => [[ '$variable' , undef, $Eval::Context::PERSISTENT]],
245 local $Plan = {'SHARE vs PERSISTENT' => 1} ;
261 INSTALL_VARIABLES => [[ '$object' , $object, $Eval::Context::PERSISTENT] ],
268 local $Plan = {'undef PERSISTENT variable' => 3} ;
275 INSTALL_VARIABLES => [[ '$object' , undef, $Eval::Context::PERSISTENT] ],
[all …]
/dports/devel/libzookeeper/apache-zookeeper-3.7.0/zookeeper-server/src/test/java/org/apache/zookeeper/test/
H A DZooKeeperQuotaTest.java74 zk.create("/a", "some".getBytes(), Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testQuota()
193 CreateMode.PERSISTENT); in testSetQuotaWhenExceedBytesSoftQuota()
212 CreateMode.PERSISTENT); in testSetQuotaWhenExceedBytesHardQuota()
229 zk.create(path, "1".getBytes(), Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testSetQuotaWhenExceedBytesHardQuotaExtend()
271 zk.create("/test", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testSetQuotaWhenSetChildDataExceedBytesQuota()
290 zk.create("/test", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testSetQuotaWhenCreateNodeExceedBytesQuota()
370 zk.create(path, "1".getBytes(), Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testSetQuotaWhenSetQuotaLessThanExistCount()
408 zk.create(path, null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testMultiCreateThenSetDataShouldWork()
417 Op.create(subPath, null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT), in testMultiCreateThenSetDataShouldWork()
428 zk.create(path, null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testMultiCreateThenSetDataShouldFail()
[all …]
H A DPersistentWatcherTest.java21 import static org.apache.zookeeper.AddWatchMode.PERSISTENT;
61 zk.addWatch("/a/b", persistentWatcher, PERSISTENT); in testBasic()
71 zk.addWatch("/a/b", null, PERSISTENT); in testNullWatch()
75 zk.addWatch("/a/b", null, PERSISTENT, cb, null); in testNullWatch()
91 zk.addWatch("/a/b", PERSISTENT); in testDefaultWatcher()
114 zk.addWatch("/a/b", persistentWatcher, PERSISTENT, cb, null); in testBasicAsync()
131 zk.addWatch("/a/b", persistentWatcher, PERSISTENT, cb, null); in testAsyncDefaultWatcher()
158 zk.addWatch("/a/b", persistentWatcher, PERSISTENT); in testRemoval()
175 zk.addWatch("/a/b", persistentWatcher, PERSISTENT); in testDisconnect()
193 zk1.addWatch("/a/b", persistentWatcher, PERSISTENT); in testMultiClient()
[all …]
H A DPersistentRecursiveWatcherTest.java82 zk.create("/a", new byte[0], ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in internalTestBasic()
83 zk.create("/a/b", new byte[0], ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in internalTestBasic()
84 zk.create("/a/b/c", new byte[0], ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in internalTestBasic()
85 zk.create("/a/b/c/d", new byte[0], ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in internalTestBasic()
86 zk.create("/a/b/c/d/e", new byte[0], ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in internalTestBasic()
105 zk.create("/a", new byte[0], ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testRemoval()
106 zk.create("/a/b", new byte[0], ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testRemoval()
134 zk1.create("/a", new byte[0], ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testMultiClient()
158 zk.create("/a", new byte[0], ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testRootWatcher()
159 zk.create("/a/b", new byte[0], ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testRootWatcher()
[all …]
H A DDisconnectedWatcherTest.java89 zk1.create("/ch1", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testChildWatcherAutoResetWithChroot()
95 zk1.create("/youdontmatter1", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testChildWatcherAutoResetWithChroot()
98 zk1.create("/ch1/youshouldmatter1", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testChildWatcherAutoResetWithChroot()
123 zk1.create("/ch1", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testDefaultWatcherAutoResetWithChroot()
129 zk1.create("/youdontmatter1", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testDefaultWatcherAutoResetWithChroot()
156 zk1.create("/ch1", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testDeepChildWatcherAutoResetWithChroot()
157 zk1.create("/ch1/here", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testDeepChildWatcherAutoResetWithChroot()
158 zk1.create("/ch1/here/we", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testDeepChildWatcherAutoResetWithChroot()
159 zk1.create("/ch1/here/we/are", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testDeepChildWatcherAutoResetWithChroot()
199 zk1.create(pathBase, null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testManyChildWatchersAutoReset()
[all …]
H A DMultiOperationTest.java252 zk.create("/foo", new byte[0], Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testMultiRollback()
810 zk.create("/foo_auth", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testMultiGetChildrenAuthentication()
811 zk.create("/foo_auth/bar", null, Ids.READ_ACL_UNSAFE, CreateMode.PERSISTENT); in testMultiGetChildrenAuthentication()
812 zk.create("/foo_no_auth", null, writeOnly, CreateMode.PERSISTENT); in testMultiGetChildrenAuthentication()
836 zk.create("/foo_auth", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testMultiGetChildrenMixedAuthenticationErrorFirst()
837 zk.create("/foo_auth/bar", null, Ids.READ_ACL_UNSAFE, CreateMode.PERSISTENT); in testMultiGetChildrenMixedAuthenticationErrorFirst()
838 zk.create("/foo_no_auth", null, writeOnly, CreateMode.PERSISTENT); in testMultiGetChildrenMixedAuthenticationErrorFirst()
859 zk.create("/foo_auth", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testMultiGetChildrenMixedAuthenticationCorrectFirst()
860 zk.create("/foo_auth/bar", null, Ids.READ_ACL_UNSAFE, CreateMode.PERSISTENT); in testMultiGetChildrenMixedAuthenticationCorrectFirst()
861 zk.create("/foo_no_auth", null, writeOnly, CreateMode.PERSISTENT); in testMultiGetChildrenMixedAuthenticationCorrectFirst()
[all …]
H A DClientTest.java160 zk.create("/acltest", new byte[0], testACL, CreateMode.PERSISTENT); in testACLs()
209 zk.create("/acltest", new byte[0], testACL, CreateMode.PERSISTENT); in testNullAuthId()
592 zk.create(path, null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in verifyCreateFails()
664 zk.create("/m", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testPathValidation()
670 zk.create("/.foo", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testPathValidation()
671 zk.create("/.f.", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testPathValidation()
672 zk.create("/..f", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testPathValidation()
674 zk.create("/f.c", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testPathValidation()
676 zk.create("/f", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testPathValidation()
677 zk.create("/f/.f", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testPathValidation()
[all …]
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-registry/src/test/java/org/apache/hadoop/registry/client/impl/
H A DTestCuratorService.java107 mkPath("/p1", CreateMode.PERSISTENT); in testMkdirs()
137 mkPath("/rm", CreateMode.PERSISTENT); in testRM()
145 mkPath("/rm", CreateMode.PERSISTENT); in testRMNonRf()
146 mkPath("/rm/child", CreateMode.PERSISTENT); in testRMNonRf()
157 mkPath("/rm", CreateMode.PERSISTENT); in testRMRf()
158 mkPath("/rm/child", CreateMode.PERSISTENT); in testRMRf()
167 mkPath("/rm", CreateMode.PERSISTENT); in testBackgroundDelete()
168 mkPath("/rm/child", CreateMode.PERSISTENT); in testBackgroundDelete()
190 CreateMode.PERSISTENT, buffer, in testCreateTwice()
194 CreateMode.PERSISTENT, buffer, in testCreateTwice()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/content_settings/core/browser/
H A Dcontent_settings_registry.cc151 ContentSettingsInfo::PERSISTENT, in Init()
162 ContentSettingsInfo::PERSISTENT, in Init()
174 ContentSettingsInfo::PERSISTENT, in Init()
197 ContentSettingsInfo::PERSISTENT, in Init()
208 ContentSettingsInfo::PERSISTENT, in Init()
222 ContentSettingsInfo::PERSISTENT, in Init()
234 ContentSettingsInfo::PERSISTENT, in Init()
246 ContentSettingsInfo::PERSISTENT, in Init()
257 ContentSettingsInfo::PERSISTENT, in Init()
270 ContentSettingsInfo::PERSISTENT, in Init()
[all …]
/dports/databases/mariadb105-client/mariadb-10.5.15/mysql-test/suite/vcol/t/
H A Dvcol_blocked_sql_funcs_main.inc25 create or replace table t1 (b double as (rand()) PERSISTENT);
33 create or replace table t1 (a datetime as (curdate()) PERSISTENT);
37 create or replace table t1 (a datetime as (current_date) PERSISTENT);
39 create or replace table t1 (a datetime as (current_date()) PERSISTENT);
43 create or replace table t1 (a datetime as (current_time) PERSISTENT);
55 create or replace table t1 (a datetime as (curtime()) PERSISTENT);
117 create or replace table t1 (a int as (connection_id()) PERSISTENT);
216 create or replace table t1 (a int as (p1()) PERSISTENT);
218 create or replace table t1 (a int as (f1()) PERSISTENT);
225 create or replace table t1 (a int as (f1()) PERSISTENT);
[all …]
/dports/databases/mariadb103-server/mariadb-10.3.34/mysql-test/suite/vcol/t/
H A Dvcol_blocked_sql_funcs_main.inc25 create or replace table t1 (b double as (rand()) PERSISTENT);
33 create or replace table t1 (a datetime as (curdate()) PERSISTENT);
37 create or replace table t1 (a datetime as (current_date) PERSISTENT);
39 create or replace table t1 (a datetime as (current_date()) PERSISTENT);
43 create or replace table t1 (a datetime as (current_time) PERSISTENT);
55 create or replace table t1 (a datetime as (curtime()) PERSISTENT);
117 create or replace table t1 (a int as (connection_id()) PERSISTENT);
216 create or replace table t1 (a int as (p1()) PERSISTENT);
218 create or replace table t1 (a int as (f1()) PERSISTENT);
225 create or replace table t1 (a int as (f1()) PERSISTENT);
[all …]
/dports/databases/mariadb104-server/mariadb-10.4.24/mysql-test/suite/vcol/t/
H A Dvcol_blocked_sql_funcs_main.inc25 create or replace table t1 (b double as (rand()) PERSISTENT);
33 create or replace table t1 (a datetime as (curdate()) PERSISTENT);
37 create or replace table t1 (a datetime as (current_date) PERSISTENT);
39 create or replace table t1 (a datetime as (current_date()) PERSISTENT);
43 create or replace table t1 (a datetime as (current_time) PERSISTENT);
55 create or replace table t1 (a datetime as (curtime()) PERSISTENT);
117 create or replace table t1 (a int as (connection_id()) PERSISTENT);
216 create or replace table t1 (a int as (p1()) PERSISTENT);
218 create or replace table t1 (a int as (f1()) PERSISTENT);
225 create or replace table t1 (a int as (f1()) PERSISTENT);
[all …]
/dports/databases/mariadb104-client/mariadb-10.4.24/mysql-test/suite/vcol/t/
H A Dvcol_blocked_sql_funcs_main.inc25 create or replace table t1 (b double as (rand()) PERSISTENT);
33 create or replace table t1 (a datetime as (curdate()) PERSISTENT);
37 create or replace table t1 (a datetime as (current_date) PERSISTENT);
39 create or replace table t1 (a datetime as (current_date()) PERSISTENT);
43 create or replace table t1 (a datetime as (current_time) PERSISTENT);
55 create or replace table t1 (a datetime as (curtime()) PERSISTENT);
117 create or replace table t1 (a int as (connection_id()) PERSISTENT);
216 create or replace table t1 (a int as (p1()) PERSISTENT);
218 create or replace table t1 (a int as (f1()) PERSISTENT);
225 create or replace table t1 (a int as (f1()) PERSISTENT);
[all …]
/dports/databases/mariadb103-client/mariadb-10.3.34/mysql-test/suite/vcol/t/
H A Dvcol_blocked_sql_funcs_main.inc25 create or replace table t1 (b double as (rand()) PERSISTENT);
33 create or replace table t1 (a datetime as (curdate()) PERSISTENT);
37 create or replace table t1 (a datetime as (current_date) PERSISTENT);
39 create or replace table t1 (a datetime as (current_date()) PERSISTENT);
43 create or replace table t1 (a datetime as (current_time) PERSISTENT);
55 create or replace table t1 (a datetime as (curtime()) PERSISTENT);
117 create or replace table t1 (a int as (connection_id()) PERSISTENT);
216 create or replace table t1 (a int as (p1()) PERSISTENT);
218 create or replace table t1 (a int as (f1()) PERSISTENT);
225 create or replace table t1 (a int as (f1()) PERSISTENT);
[all …]
/dports/databases/mariadb105-server/mariadb-10.5.15/mysql-test/suite/vcol/t/
H A Dvcol_blocked_sql_funcs_main.inc25 create or replace table t1 (b double as (rand()) PERSISTENT);
33 create or replace table t1 (a datetime as (curdate()) PERSISTENT);
37 create or replace table t1 (a datetime as (current_date) PERSISTENT);
39 create or replace table t1 (a datetime as (current_date()) PERSISTENT);
43 create or replace table t1 (a datetime as (current_time) PERSISTENT);
55 create or replace table t1 (a datetime as (curtime()) PERSISTENT);
117 create or replace table t1 (a int as (connection_id()) PERSISTENT);
216 create or replace table t1 (a int as (p1()) PERSISTENT);
218 create or replace table t1 (a int as (f1()) PERSISTENT);
225 create or replace table t1 (a int as (f1()) PERSISTENT);
[all …]
/dports/math/openturns/openturns-1.18/lib/src/Base/Common/openturns/
H A DPersistentObjectFactory.hxx100 template <class PERSISTENT>
111 registerMe(PERSISTENT::GetClassName()); in Factory()
125 PERSISTENT * p_rebuildObject = new PERSISTENT(); in build()
141 PERSISTENT & ref_po = static_cast<PERSISTENT &>(po); in assign()
142 const PERSISTENT & ref_other = static_cast<const PERSISTENT &>(other); in assign()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/content_settings/core/browser/
H A Dcontent_settings_registry.cc167 ContentSettingsInfo::PERSISTENT, in Init()
179 ContentSettingsInfo::PERSISTENT, in Init()
192 ContentSettingsInfo::PERSISTENT, in Init()
217 ContentSettingsInfo::PERSISTENT, in Init()
229 ContentSettingsInfo::PERSISTENT, in Init()
244 ContentSettingsInfo::PERSISTENT, in Init()
257 ContentSettingsInfo::PERSISTENT, in Init()
270 ContentSettingsInfo::PERSISTENT, in Init()
282 ContentSettingsInfo::PERSISTENT, in Init()
296 ContentSettingsInfo::PERSISTENT, in Init()
[all …]
/dports/net/samba412/samba-4.12.15/ctdb/tests/UNIT/tool/
H A Dctdb.getdbstatus.001.sh17 0x7132c184 secrets.tdb PERSISTENT
18 0x6cf2837d registry.tdb PERSISTENT 42
27 PERSISTENT: no
39 PERSISTENT: no
51 PERSISTENT: no
63 PERSISTENT: yes
75 PERSISTENT: yes
87 PERSISTENT: no
99 PERSISTENT: no
H A Dctdb.getdbstatus.002.sh17 0x7132c184 secrets.tdb PERSISTENT
18 0x6cf2837d registry.tdb PERSISTENT 42
27 PERSISTENT: no
39 PERSISTENT: no
51 PERSISTENT: no
63 PERSISTENT: yes
75 PERSISTENT: yes
87 PERSISTENT: no
99 PERSISTENT: no
/dports/devel/libzookeeper/apache-zookeeper-3.7.0/zookeeper-server/src/test/java/org/apache/zookeeper/server/quorum/
H A DEagerACLFilterTest.java126 zkClient.create(PARENT_PATH, DATA, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testCreateOK()
127 zkClientB.create(CHILD_PATH, DATA, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testCreateOK()
136 zkClient.create(PARENT_PATH, DATA, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT, null); in testCreate2OK()
137 zkClientB.create(CHILD_PATH, DATA, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT, null); in testCreate2OK()
146 zkClient.create(PARENT_PATH, DATA, Ids.CREATOR_ALL_ACL, CreateMode.PERSISTENT); in testCreateFail()
149 zkClientB.create(CHILD_PATH, DATA, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testCreateFail()
162 zkClient.create(PARENT_PATH, DATA, Ids.CREATOR_ALL_ACL, CreateMode.PERSISTENT, null); in testCreate2Fail()
178 zkClient.create(PARENT_PATH, DATA, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT); in testDeleteOK()
188 zkClient.create(PARENT_PATH, DATA, Ids.CREATOR_ALL_ACL, CreateMode.PERSISTENT, null); in testDeleteFail()
189 zkClient.create(CHILD_PATH, DATA, Ids.CREATOR_ALL_ACL, CreateMode.PERSISTENT, null); in testDeleteFail()
[all …]
/dports/databases/mariadb104-server/mariadb-10.4.24/mysql-test/suite/vcol/r/
H A Dvcol_blocked_sql_funcs.result4 create or replace table t1 (b double as (rand()) PERSISTENT);
10 create or replace table t1 (a datetime as (curdate()) PERSISTENT);
13 create or replace table t1 (a datetime as (current_date) PERSISTENT);
15 create or replace table t1 (a datetime as (current_date()) PERSISTENT);
18 create or replace table t1 (a datetime as (current_time) PERSISTENT);
28 create or replace table t1 (a datetime as (curtime()) PERSISTENT);
75 create or replace table t1 (a int as (connection_id()) PERSISTENT);
147 create or replace table t1 (a int as (p1()) PERSISTENT);
149 create or replace table t1 (a int as (f1()) PERSISTENT);
154 create or replace table t1 (a int as (f1()) PERSISTENT);
[all …]
/dports/databases/mariadb105-client/mariadb-10.5.15/mysql-test/suite/vcol/r/
H A Dvcol_blocked_sql_funcs.result4 create or replace table t1 (b double as (rand()) PERSISTENT);
10 create or replace table t1 (a datetime as (curdate()) PERSISTENT);
13 create or replace table t1 (a datetime as (current_date) PERSISTENT);
15 create or replace table t1 (a datetime as (current_date()) PERSISTENT);
18 create or replace table t1 (a datetime as (current_time) PERSISTENT);
28 create or replace table t1 (a datetime as (curtime()) PERSISTENT);
75 create or replace table t1 (a int as (connection_id()) PERSISTENT);
147 create or replace table t1 (a int as (p1()) PERSISTENT);
149 create or replace table t1 (a int as (f1()) PERSISTENT);
154 create or replace table t1 (a int as (f1()) PERSISTENT);
[all …]
/dports/databases/mariadb104-client/mariadb-10.4.24/mysql-test/suite/vcol/r/
H A Dvcol_blocked_sql_funcs.result4 create or replace table t1 (b double as (rand()) PERSISTENT);
10 create or replace table t1 (a datetime as (curdate()) PERSISTENT);
13 create or replace table t1 (a datetime as (current_date) PERSISTENT);
15 create or replace table t1 (a datetime as (current_date()) PERSISTENT);
18 create or replace table t1 (a datetime as (current_time) PERSISTENT);
28 create or replace table t1 (a datetime as (curtime()) PERSISTENT);
75 create or replace table t1 (a int as (connection_id()) PERSISTENT);
147 create or replace table t1 (a int as (p1()) PERSISTENT);
149 create or replace table t1 (a int as (f1()) PERSISTENT);
154 create or replace table t1 (a int as (f1()) PERSISTENT);
[all …]
/dports/databases/mariadb103-server/mariadb-10.3.34/mysql-test/suite/vcol/r/
H A Dvcol_blocked_sql_funcs.result4 create or replace table t1 (b double as (rand()) PERSISTENT);
10 create or replace table t1 (a datetime as (curdate()) PERSISTENT);
13 create or replace table t1 (a datetime as (current_date) PERSISTENT);
15 create or replace table t1 (a datetime as (current_date()) PERSISTENT);
18 create or replace table t1 (a datetime as (current_time) PERSISTENT);
28 create or replace table t1 (a datetime as (curtime()) PERSISTENT);
75 create or replace table t1 (a int as (connection_id()) PERSISTENT);
147 create or replace table t1 (a int as (p1()) PERSISTENT);
149 create or replace table t1 (a int as (f1()) PERSISTENT);
154 create or replace table t1 (a int as (f1()) PERSISTENT);
[all …]
/dports/databases/mariadb103-client/mariadb-10.3.34/mysql-test/suite/vcol/r/
H A Dvcol_blocked_sql_funcs.result4 create or replace table t1 (b double as (rand()) PERSISTENT);
10 create or replace table t1 (a datetime as (curdate()) PERSISTENT);
13 create or replace table t1 (a datetime as (current_date) PERSISTENT);
15 create or replace table t1 (a datetime as (current_date()) PERSISTENT);
18 create or replace table t1 (a datetime as (current_time) PERSISTENT);
28 create or replace table t1 (a datetime as (curtime()) PERSISTENT);
75 create or replace table t1 (a int as (connection_id()) PERSISTENT);
147 create or replace table t1 (a int as (p1()) PERSISTENT);
149 create or replace table t1 (a int as (f1()) PERSISTENT);
154 create or replace table t1 (a int as (f1()) PERSISTENT);
[all …]

12345678910>>...48