Skip to content
#

relational-database

Here are 168 public repositories matching this topic...

JeanGolang
JeanGolang commented Feb 7, 2017

Hello Philip!
I think there is an issue with this part of the code of rqlite (store/store.go).

func (s *Store) Database(leader bool) ([]byte, error) {
	if leader && s.raft.State() != raft.Leader {
		return nil, ErrNotLeader
	}
	// Ensure only one snapshot can take place at once, and block all queries.
	s.mu.Lock()
	defer s.mu.Unlock()

	f, err := ioutil.TempFile("", "rqlilte-snap-
rgazelot
rgazelot commented Jan 6, 2021

Hello, I'm trying to type my application which is using redux-orm. I came across an issue with the new createSelector API. My code is as simple as:

import { createSelector } from 'redux-orm'
import orm from 'features/regulation/orm'

export const selectTest = createSelector(orm.Policy)

The error I get is that

Expected 2-9 arguments, but got 1.ts(2554)
redux.d.ts(87, 
nblintao
nblintao commented Feb 8, 2021

Today, OnlineIndexer uses an in-memory counter recordsScanned to log how many records have been scanned ("Built Range" logs) once every 5 minutes, while it uses a value persisted in scannedRecordsSubspace for IndexBuildState requests.

We should deprecate recordsScanned and just use scannedRecordsSubspace in "Built Range" logs. And we can also add recordsInTotal to that log. In fac

heurist

The CEDS Integrated Data Store factors the entities and attributes of the CEDS Domain Entity Schema (DES) with standard technical syntax and 3rd normal form database normalization. The IDS Logical Model provides a standard framework for integration of P-20 data systems through a well-normalized “operational data store”. In a P-20 data system, the IDS models the most current view of data available to the enterprise, including some historical data (such as prior assessment data and enrollment records). A “record” is generally added for each Person-Organization Relationship change event in the system. This CEDS logical model does not directly address the production aspects of log and change management.

  • Updated Apr 15, 2021
  • TSQL
CEDS-Collaborative-Exchange

The CEDS Collaborative Exchange is a repository of code developed by the community that interacts with the CEDS Integration Data Store and the CEDS Elements repositories. All resources provided in this community are considered free and open source.

  • Updated Feb 10, 2020

Improve this page

Add a description, image, and links to the relational-database topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the relational-database topic, visit your repo's landing page and select "manage topics."

Learn more