Home
last modified time | relevance | path

Searched refs:new_db (Results 1 – 25 of 1239) sorted by relevance

12345678910>>...50

/dports/multimedia/gpodder/gpodder-3.10.17/src/gpodder/
H A Dschema.py234 def convert_gpodder2_db(old_db, new_db): argument
242 new_db_filename = new_db
243 new_db = sqlite.connect(new_db)
244 upgrade(new_db, new_db_filename)
271 new_db.execute("""
303 new_db.execute("""
307 new_db.create_function('is_html', 1, util.is_html)
308 new_db.create_function('remove_html_tags', 1, util.remove_html_tags)
311 new_db.execute("UPDATE podcast SET http_last_modified=NULL, http_etag=NULL")
316 new_db.commit()
[all …]
/dports/devel/ipython/ipython-7.29.0/IPython/core/
H A Dhistoryapp.py86 new_db = sqlite3.connect(new_hist_file)
87 new_db.execute("""CREATE TABLE IF NOT EXISTS sessions (session integer
90 new_db.execute("""CREATE TABLE IF NOT EXISTS history
93 new_db.execute("""CREATE TABLE IF NOT EXISTS output_history
96 new_db.commit()
100 with new_db:
102 new_db.executemany('insert into sessions values (?,?,?,?,?)', sessions)
103 new_db.executemany('insert into history values (?,?,?,?)', inputs)
104 new_db.executemany('insert into output_history values (?,?,?)', outputs)
105 new_db.close()
/dports/devel/ipython5/ipython-5.10.0/IPython/core/
H A Dhistoryapp.py87 new_db = sqlite3.connect(new_hist_file)
88 new_db.execute("""CREATE TABLE IF NOT EXISTS sessions (session integer
91 new_db.execute("""CREATE TABLE IF NOT EXISTS history
94 new_db.execute("""CREATE TABLE IF NOT EXISTS output_history
97 new_db.commit()
101 with new_db:
103 new_db.executemany('insert into sessions values (?,?,?,?,?)', sessions)
104 new_db.executemany('insert into history values (?,?,?,?)', inputs)
105 new_db.executemany('insert into output_history values (?,?,?)', outputs)
106 new_db.close()
/dports/java/java-subversion/subversion-1.14.1/subversion/libsvn_repos/
H A Ddump_editor.c191 struct dir_baton *new_db = apr_pcalloc(pool, sizeof(*new_db)); in make_dir_baton() local
206 new_db->eb = eb; in make_dir_baton()
207 new_db->pool = pool; in make_dir_baton()
213 new_db->headers = NULL; in make_dir_baton()
218 *dbp = new_db; in make_dir_baton()
586 eb, new_db->repos_relpath, new_db, in open_root()
598 if (! new_db) in open_root()
604 *root_baton = new_db; in open_root()
653 pb->eb, new_db->repos_relpath, new_db, NULL, in add_directory()
668 *child_baton = new_db; in add_directory()
[all …]
/dports/devel/py-subversion/subversion-1.14.1/subversion/libsvn_repos/
H A Ddump_editor.c191 struct dir_baton *new_db = apr_pcalloc(pool, sizeof(*new_db)); in make_dir_baton() local
206 new_db->eb = eb; in make_dir_baton()
207 new_db->pool = pool; in make_dir_baton()
213 new_db->headers = NULL; in make_dir_baton()
218 *dbp = new_db; in make_dir_baton()
586 eb, new_db->repos_relpath, new_db, in open_root()
598 if (! new_db) in open_root()
604 *root_baton = new_db; in open_root()
653 pb->eb, new_db->repos_relpath, new_db, NULL, in add_directory()
668 *child_baton = new_db; in add_directory()
[all …]
/dports/security/subversion-gnome-keyring/subversion-1.14.1/subversion/libsvn_repos/
H A Ddump_editor.c191 struct dir_baton *new_db = apr_pcalloc(pool, sizeof(*new_db)); in make_dir_baton() local
206 new_db->eb = eb; in make_dir_baton()
207 new_db->pool = pool; in make_dir_baton()
213 new_db->headers = NULL; in make_dir_baton()
218 *dbp = new_db; in make_dir_baton()
586 eb, new_db->repos_relpath, new_db, in open_root()
598 if (! new_db) in open_root()
604 *root_baton = new_db; in open_root()
653 pb->eb, new_db->repos_relpath, new_db, NULL, in add_directory()
668 *child_baton = new_db; in add_directory()
[all …]
/dports/devel/p5-subversion/subversion-1.14.1/subversion/libsvn_repos/
H A Ddump_editor.c191 struct dir_baton *new_db = apr_pcalloc(pool, sizeof(*new_db)); in make_dir_baton() local
206 new_db->eb = eb; in make_dir_baton()
207 new_db->pool = pool; in make_dir_baton()
213 new_db->headers = NULL; in make_dir_baton()
218 *dbp = new_db; in make_dir_baton()
586 eb, new_db->repos_relpath, new_db, in open_root()
598 if (! new_db) in open_root()
604 *root_baton = new_db; in open_root()
653 pb->eb, new_db->repos_relpath, new_db, NULL, in add_directory()
668 *child_baton = new_db; in add_directory()
[all …]
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/swig/python/gdal-utils/osgeo_utils/
H A Dgdalcompare.py181 def compare_db(golden_db, new_db, options=None): argument
189 new_db.GetProjection())
194 new_gt = new_db.GetGeoTransform()
208 if golden_db.RasterCount != new_db.RasterCount:
216 nSzX = new_db.GetRasterBand(i + 1).XSize
218 nSzY = new_db.GetRasterBand(i + 1).YSize
238 def compare_sds(golden_db, new_db, options=None): argument
244 new_sds = new_db.GetMetadata('SUBDATASETS')
280 new_db = gdal.Open(new_file)
281 found_diff += compare_db(golden_db, new_db)
[all …]
/dports/graphics/gdal/gdal-3.3.3/swig/python/gdal-utils/osgeo_utils/
H A Dgdalcompare.py181 def compare_db(golden_db, new_db, options=None): argument
189 new_db.GetProjection())
194 new_gt = new_db.GetGeoTransform()
208 if golden_db.RasterCount != new_db.RasterCount:
216 nSzX = new_db.GetRasterBand(i + 1).XSize
218 nSzY = new_db.GetRasterBand(i + 1).YSize
238 def compare_sds(golden_db, new_db, options=None): argument
244 new_sds = new_db.GetMetadata('SUBDATASETS')
280 new_db = gdal.Open(new_file)
281 found_diff += compare_db(golden_db, new_db)
[all …]
/dports/graphics/py-gdal/gdal-3.3.3/swig/python/gdal-utils/osgeo_utils/
H A Dgdalcompare.py181 def compare_db(golden_db, new_db, options=None): argument
189 new_db.GetProjection())
194 new_gt = new_db.GetGeoTransform()
208 if golden_db.RasterCount != new_db.RasterCount:
216 nSzX = new_db.GetRasterBand(i + 1).XSize
218 nSzY = new_db.GetRasterBand(i + 1).YSize
238 def compare_sds(golden_db, new_db, options=None): argument
244 new_sds = new_db.GetMetadata('SUBDATASETS')
280 new_db = gdal.Open(new_file)
281 found_diff += compare_db(golden_db, new_db)
[all …]
/dports/databases/percona56-client/percona-server-5.6.51-91.0/mysql-test/suite/tokudb/t/
H A Ddir_per_db_rename_to_nonexisting_schema.test9 CREATE DATABASE new_db;
11 ALTER TABLE test.t1 RENAME new_db.t1;
16 --echo The content of "new_db" directory:
19 --list_files $DATADIR/new_db
20 DROP DATABASE new_db;
44 CREATE DATABASE new_db;
46 ALTER TABLE test.t1 RENAME new_db.t1;
51 --echo The content of "new_db" directory:
54 --list_files $custom_tokudb_data_dir/new_db
55 DROP DATABASE new_db;
/dports/databases/percona56-server/percona-server-5.6.51-91.0/mysql-test/suite/tokudb/t/
H A Ddir_per_db_rename_to_nonexisting_schema.test9 CREATE DATABASE new_db;
11 ALTER TABLE test.t1 RENAME new_db.t1;
16 --echo The content of "new_db" directory:
19 --list_files $DATADIR/new_db
20 DROP DATABASE new_db;
44 CREATE DATABASE new_db;
46 ALTER TABLE test.t1 RENAME new_db.t1;
51 --echo The content of "new_db" directory:
54 --list_files $custom_tokudb_data_dir/new_db
55 DROP DATABASE new_db;
/dports/databases/percona-pam-for-mysql/percona-server-5.6.51-91.0/mysql-test/suite/tokudb/t/
H A Ddir_per_db_rename_to_nonexisting_schema.test9 CREATE DATABASE new_db;
11 ALTER TABLE test.t1 RENAME new_db.t1;
16 --echo The content of "new_db" directory:
19 --list_files $DATADIR/new_db
20 DROP DATABASE new_db;
44 CREATE DATABASE new_db;
46 ALTER TABLE test.t1 RENAME new_db.t1;
51 --echo The content of "new_db" directory:
54 --list_files $custom_tokudb_data_dir/new_db
55 DROP DATABASE new_db;
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/mysql-test/suite/tokudb/t/
H A Ddir_per_db_rename_to_nonexisting_schema.test9 CREATE DATABASE new_db;
11 ALTER TABLE test.t1 RENAME new_db.t1;
16 --echo The content of "new_db" directory:
19 --list_files $DATADIR/new_db
20 DROP DATABASE new_db;
44 CREATE DATABASE new_db;
46 ALTER TABLE test.t1 RENAME new_db.t1;
51 --echo The content of "new_db" directory:
54 --list_files $custom_tokudb_data_dir/new_db
55 DROP DATABASE new_db;
/dports/databases/percona57-client/percona-server-5.7.36-39/mysql-test/suite/tokudb/t/
H A Ddir_per_db_rename_to_nonexisting_schema.test9 CREATE DATABASE new_db;
11 ALTER TABLE test.t1 RENAME new_db.t1;
16 --echo The content of "new_db" directory:
19 --list_files $DATADIR/new_db
20 DROP DATABASE new_db;
44 CREATE DATABASE new_db;
46 ALTER TABLE test.t1 RENAME new_db.t1;
51 --echo The content of "new_db" directory:
54 --list_files $custom_tokudb_data_dir/new_db
55 DROP DATABASE new_db;
/dports/databases/percona57-server/percona-server-5.7.36-39/mysql-test/suite/tokudb/t/
H A Ddir_per_db_rename_to_nonexisting_schema.test9 CREATE DATABASE new_db;
11 ALTER TABLE test.t1 RENAME new_db.t1;
16 --echo The content of "new_db" directory:
19 --list_files $DATADIR/new_db
20 DROP DATABASE new_db;
44 CREATE DATABASE new_db;
46 ALTER TABLE test.t1 RENAME new_db.t1;
51 --echo The content of "new_db" directory:
54 --list_files $custom_tokudb_data_dir/new_db
55 DROP DATABASE new_db;
/dports/databases/mariadb104-server/mariadb-10.4.24/storage/tokudb/mysql-test/tokudb/t/
H A Ddir_per_db_rename_to_nonexisting_schema.test9 CREATE DATABASE new_db;
11 ALTER TABLE test.t1 RENAME new_db.t1;
16 --echo The content of "new_db" directory:
19 --list_files $DATADIR/new_db
20 DROP DATABASE new_db;
43 CREATE DATABASE new_db;
45 ALTER TABLE test.t1 RENAME new_db.t1;
49 --echo The content of "new_db" directory:
52 DROP DATABASE new_db;
/dports/databases/mariadb104-client/mariadb-10.4.24/storage/tokudb/mysql-test/tokudb/t/
H A Ddir_per_db_rename_to_nonexisting_schema.test9 CREATE DATABASE new_db;
11 ALTER TABLE test.t1 RENAME new_db.t1;
16 --echo The content of "new_db" directory:
19 --list_files $DATADIR/new_db
20 DROP DATABASE new_db;
43 CREATE DATABASE new_db;
45 ALTER TABLE test.t1 RENAME new_db.t1;
49 --echo The content of "new_db" directory:
52 DROP DATABASE new_db;
/dports/databases/mariadb105-client/mariadb-10.5.15/storage/tokudb/mysql-test/tokudb/t/
H A Ddir_per_db_rename_to_nonexisting_schema.test9 CREATE DATABASE new_db;
11 ALTER TABLE test.t1 RENAME new_db.t1;
16 --echo The content of "new_db" directory:
19 --list_files $DATADIR/new_db
20 DROP DATABASE new_db;
43 CREATE DATABASE new_db;
45 ALTER TABLE test.t1 RENAME new_db.t1;
49 --echo The content of "new_db" directory:
52 DROP DATABASE new_db;
/dports/databases/mariadb103-client/mariadb-10.3.34/storage/tokudb/mysql-test/tokudb/t/
H A Ddir_per_db_rename_to_nonexisting_schema.test9 CREATE DATABASE new_db;
11 ALTER TABLE test.t1 RENAME new_db.t1;
16 --echo The content of "new_db" directory:
19 --list_files $DATADIR/new_db
20 DROP DATABASE new_db;
43 CREATE DATABASE new_db;
45 ALTER TABLE test.t1 RENAME new_db.t1;
49 --echo The content of "new_db" directory:
52 DROP DATABASE new_db;
/dports/databases/mariadb103-server/mariadb-10.3.34/storage/tokudb/mysql-test/tokudb/t/
H A Ddir_per_db_rename_to_nonexisting_schema.test9 CREATE DATABASE new_db;
11 ALTER TABLE test.t1 RENAME new_db.t1;
16 --echo The content of "new_db" directory:
19 --list_files $DATADIR/new_db
20 DROP DATABASE new_db;
43 CREATE DATABASE new_db;
45 ALTER TABLE test.t1 RENAME new_db.t1;
49 --echo The content of "new_db" directory:
52 DROP DATABASE new_db;
/dports/databases/mariadb105-server/mariadb-10.5.15/storage/tokudb/mysql-test/tokudb/t/
H A Ddir_per_db_rename_to_nonexisting_schema.test9 CREATE DATABASE new_db;
11 ALTER TABLE test.t1 RENAME new_db.t1;
16 --echo The content of "new_db" directory:
19 --list_files $DATADIR/new_db
20 DROP DATABASE new_db;
43 CREATE DATABASE new_db;
45 ALTER TABLE test.t1 RENAME new_db.t1;
49 --echo The content of "new_db" directory:
52 DROP DATABASE new_db;
/dports/sysutils/isc-cron/isc-cron-4.1_2/
H A Ddatabase.c44 cron_db new_db; in load_database() local
83 new_db.mtime = TMAX(statbuf.st_mtime, syscron_stat.st_mtime); in load_database()
84 new_db.head = new_db.tail = NULL; in load_database()
88 &new_db, old_db); in load_database()
119 &statbuf, &new_db, old_db); in load_database()
141 *old_db = new_db; in load_database()
181 struct stat *statbuf, cron_db *new_db, cron_db *old_db) in process_crontab() argument
236 link_user(new_db, u); in process_crontab()
255 link_user(new_db, u); in process_crontab()
/dports/databases/percona56-server/percona-server-5.6.51-91.0/mysql-test/suite/tokudb/r/
H A Ddir_per_db_rename_to_nonexisting_schema.result5 CREATE DATABASE new_db;
7 ALTER TABLE test.t1 RENAME new_db.t1;
9 The content of "new_db" directory:
14 DROP DATABASE new_db;
32 CREATE DATABASE new_db;
34 ALTER TABLE test.t1 RENAME new_db.t1;
36 The content of "new_db" directory:
39 DROP DATABASE new_db;
/dports/databases/percona56-client/percona-server-5.6.51-91.0/mysql-test/suite/tokudb/r/
H A Ddir_per_db_rename_to_nonexisting_schema.result5 CREATE DATABASE new_db;
7 ALTER TABLE test.t1 RENAME new_db.t1;
9 The content of "new_db" directory:
14 DROP DATABASE new_db;
32 CREATE DATABASE new_db;
34 ALTER TABLE test.t1 RENAME new_db.t1;
36 The content of "new_db" directory:
39 DROP DATABASE new_db;

12345678910>>...50